Re: [fetch] Aborting a fetch (#27)

Fine:
```js
let p = impossibleToIgnoreCancellableFunction()
  .then(() => foo(3000))
  .then(() => console.log("here"))
  .catch(e => console.error(e));
p.cancel();

```

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/27#issuecomment-178665461

Received on Tuesday, 2 February 2016 16:19:40 UTC