Re: [whatwg/fetch] Use a ReadableStream with byte source (formerly called ReadableByteStream) for .body (#267)

2022 update: Firefox shipped byte stream as of version 102, and it shipped Fetch with byte stream (which was not really intentional but accidental IMO, given that there is still no relevant test). And thus this has been working on Firefox for months:

```js
new Response(new Uint8Array([1,2])).body.getReader({mode: 'byob'})
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/267#issuecomment-1350303670
You are receiving this because you are subscribed to this thread.

Message ID: <whatwg/fetch/issues/267/1350303670@github.com>

Received on Wednesday, 14 December 2022 02:55:19 UTC