Re: [fetch] Proposed backward-incompatible change: requiring cloning all requests/responses (#61)

> ```js
> var req = new Request(url, { method: "POST", body: "foo" });
> fetch(req);
> fetch(req);
> cache.add(req);
> ```
>
> fails on the second fetch, since the body is drained.

Does it? https://fetch.spec.whatwg.org/#concept-http-network-or-cache-fetch step 1 seems to perform a clone, or am I misunderstanding? +@annevk

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

Received on Tuesday, 9 June 2015 17:24:44 UTC