-
Notifications
You must be signed in to change notification settings - Fork 439
New issue
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
Add readable byte streams #1362
Add readable byte streams #1362
Conversation
Thanks for the PR! This section of the codebase is owned by @saschanaz - if they write a comment saying "LGTM" then it will be merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, thanks! Some nits.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unit tests are added.
I also added additional constructor signatures for ReadableStream
, to distinguish between byte streams and non-byte streams. (This is a bit complex, so please take a look!)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
(Sorry for responding late, I was off and playing games 😄. My vacation does not really apply here, but whatever.)
Co-authored-by: Kagami Sascha Rosylight <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay everything's cool, thank you for additional assertions!
controller.enqueue("b"); | ||
controller.close(); | ||
}, | ||
cancel(reason) { | ||
assertType<any>(reason); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this really do anything? 😄 (But probably good to be explicit)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
¯\_(ツ)_/¯
LGTM |
Merging because @saschanaz is a code-owner of all the changes - thanks! |
With Firefox 102 adding support for readable byte streams, we now have two browser engines (Chromium and Gecko) shipping this feature. This means we can finally add official type definitions! 😁
Most of work was already done in #890 but then those types had to be removed. This PR brings them back, and hopefully they'll stay this time around. 😅