Re: [ServiceWorker] Returning a FetchPromise from fetch() (#625)

>From @tabatkins…

```js
var fetchPromise = fetch(url);
var jsonPromise = fetchPromise.then(r => r.clone().json());
var textPromise = fetchPromise.then(r => r.text());

textPromise.abort(); // should this cause jsonPromise to abort?
```

---
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/625#issuecomment-75300556

Received on Friday, 20 February 2015 19:12:51 UTC