-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Open
Description
The fetch standard says that response.body should be null or a body.
https://fetch.spec.whatwg.org/#responses
A response has an associated body (null or a body). Unless stated otherwise it is null.
However this polyfill never sets the body field in Response so it's always undefined. This causes downstream issues for applications that might use response.body to check if a response body exists.
Proposed Change
In fetch.js line 238
Line 238 in ba5cf1e
| this._bodyInit = body |
assign the body field
this._bodyInit = body
this.body = body ?? nullI'm willing to open a PR if this proposal looks good to you.
owonwo, isocroft and pi0owonwo and pi0
Metadata
Metadata
Assignees
Labels
No labels