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 throws a DOMException when atob() is run (no argument) but it should throw a TypeError like webidl says. The DOMException is from trying to convert it to a string.
Deno's current behavior is the same as atob(undefined).
Deno throws a
DOMException
whenatob()
is run (no argument) but it should throw aTypeError
like webidl says. The DOMException is from trying to convert it to a string.Deno's current behavior is the same as
atob(undefined)
.A fix should be pretty simple.
Saw this here nodejs/node#41450 and namely nodejs/node#41450 (comment)
The text was updated successfully, but these errors were encountered: