- From: Jake Archibald <notifications@github.com>
- Date: Fri, 20 Feb 2015 11:12:24 -0800
- To: slightlyoff/ServiceWorker <ServiceWorker@noreply.github.com>
Received on Friday, 20 February 2015 19:12:51 UTC
>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