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

I'm not convinced that real code is going to drag out the controller all that often. I imagine myself writing this code:

```js
fetch(url, {
  control(controller) {
    cancel_button.then(() => controller.abort());
  }
});
```

Which does not involve up-lifting the controller's scope.

-- 
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-270766093

Received on Thursday, 5 January 2017 21:43:52 UTC