-
-
Notifications
You must be signed in to change notification settings - Fork 420
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
Support for web-streams-polyfill@3.0.0 #188
Comments
Um, yea... do you know what is breaking? |
I use But. Did not find any problems btw: If use import should |
Specifically for us, we ran into an incompatibility: function IsWritableStream(x) {
if (!typeIsObject(x)) {
return false;
}
if (!Object.prototype.hasOwnProperty.call(x, '_writableStreamController')) {
return false;
}
return true;
} This function (which is part of the web-streams-polyfill) returns This result in an error when using
|
Yea, it's a big issue with interchangeable versions of native and polyfilled streams Possible solution i have waited long for: MattiasBuelens/web-streams-polyfill#20 related issues: |
web-streams-polyfill@3.0.0
has been released and includes some breaking changes.https://github.com/MattiasBuelens/web-streams-polyfill/blob/master/CHANGELOG.md
Is there any intent to support it?
The text was updated successfully, but these errors were encountered: