- From: Jake Archibald <notifications@github.com>
- Date: Thu, 05 Jan 2017 07:47:25 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 5 January 2017 15:48:12 UTC
@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