Re: [whatwg/fetch] Aborting a fetch: The Next Generation (#447)

@delapuente "cancelable promises" are not being suggested here. They've been abandoned. Or are you calling the `FetchController` promise subclass a "cancelable promise"?

In the subclass proposal, the returned value from `fetch()` becomes the intermediate type you're wanting.

```js
const controller = fetch(url);
const p = controller.then(response => …);
controller.abort();
p.abort === undefined;
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/447#issuecomment-270675990

Received on Thursday, 5 January 2017 15:48:12 UTC