We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
body
Currently this succeeds on Firefox and fails on Chrome:
new Response(new Uint8Array([1,2])).body.getReader({mode: 'byob'})
Firefox creates body as a byte stream: https://searchfox.org/mozilla-central/rev/43cb6eca1c3069d46d589d52ab4949257e630d19/dom/streams/ReadableStream.cpp#871
But the spec does not actually use "set up with byte reading support" algorithm, and I see no relevant test for this.
I think it should support byte stream as fetch is all about bytes. What do you think?
The text was updated successfully, but these errors were encountered:
Dupe of #267.
Sorry, something went wrong.
No branches or pull requests
Currently this succeeds on Firefox and fails on Chrome:
Firefox creates body as a byte stream: https://searchfox.org/mozilla-central/rev/43cb6eca1c3069d46d589d52ab4949257e630d19/dom/streams/ReadableStream.cpp#871
But the spec does not actually use "set up with byte reading support" algorithm, and I see no relevant test for this.
I think it should support byte stream as fetch is all about bytes. What do you think?
The text was updated successfully, but these errors were encountered: