Re: [whatwg/fetch] Fetch termination API "meeting" (#455)

```js
var cancelController;
const fetch = fetch("/fetch", {
   control(controller) { cancelController = controller; }
});
fetch.cancel(); // cancel, returns a promise with true/false
const readonly = fetch.then();
```

-- 
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/455#issuecomment-274839741

Received on Tuesday, 24 January 2017 15:40:16 UTC