You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
, Deno has the same bug as the reference implementation did: it catches the exception caused by trying to call undefined as a function, and then attempts to error the stream with it.
I don't believe this is observable since the stream is already erroring so the "TypeError: cannot call undefined" will not actually be exposed to the web developer.
However, it's probably best to fix this.
The text was updated successfully, but these errors were encountered:
See whatwg/streams#1333.
Per
deno/ext/web/06_streams.js
Line 4445 in 4700f12
undefined
as a function, and then attempts to error the stream with it.I don't believe this is observable since the stream is already erroring so the "TypeError: cannot call undefined" will not actually be exposed to the web developer.
However, it's probably best to fix this.
The text was updated successfully, but these errors were encountered: