Re: [whatwg/fetch] Allow `new Response` with 101 status code (Issue #1759)

@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