- From: A-yon Lee <notifications@github.com>
- Date: Sun, 09 Jun 2024 22:45:40 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 10 June 2024 05:45:44 UTC
@benjamingr In Deno and Bun, only `101` are supported outside the range of `200` - `599`. For example, when trying to set the status code to 100, Deno throws this: ``` Uncaught RangeError: The status provided (100) is not equal to 101 and outside the range [200, 599]. ``` And Bun throws this: ``` RangeError: The status provided (100) must be 101 or in the range of [200, 599] ``` Perhaps we should be in line with these and only support `101`. -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/fetch/issues/1759#issuecomment-2157315748 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/fetch/issues/1759/2157315748@github.com>
Received on Monday, 10 June 2024 05:45:44 UTC