- From: Anne van Kesteren <notifications@github.com>
- Date: Sat, 30 Jan 2021 00:46:54 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 30 January 2021 08:47:06 UTC
```
x = new Request("about:blank", { method: "POST", body: "test" });
copyX = new Request(x, { body: null });
copyX.text().then(console.log);
```
gives "test" in all browsers.
Is this something we want to fix?
cc @wanderview @youennf @evilpie
--
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/933#issuecomment-770179180
Received on Saturday, 30 January 2021 08:47:06 UTC