-
Notifications
You must be signed in to change notification settings - Fork 356
Open
Labels
Description
What is the issue with the Fetch Standard?
Currently we say:
If init["status"] is not in the range 200 to 599, inclusive, then throw a RangeError.
A request was recently made to Node.js to support status 101 when initializing requests, i.e. new Response(null, { status: 101 })
.
This is because people use Response
in server runtimes to indicate well... a response 😅
On the service worker front, I'm not sure how this would be useful outside of testing (but it'd be useful there).