Re: [whatwg/fetch] Why doesn't the "body" member of RequestInit have a default value? (#933)

```
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