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

@jyasskin 

> until you're sure you're done creating children

I can't think of a case you'd want that behaviour but it's Friday and I'm way over my thinking quota for the week.

If you don't want children to be able to cancel the parent, cast to a normal promise before returning.

```js
function nonCancellableFetch(...args) {
  return Promise.resolve(fetch(...args));
}
```

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

Received on Friday, 27 March 2015 16:53:12 UTC