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
Removing the top level await will cause problem in the Node case.
Using Top Level await in modules on the other hand cases problem with window.onLoad in HTML. https://hakanols.github.io/spel/AwaitTopLevel/index.html
This is on the other hand most likely a bug that will be fixed.
With top-level await
https://blog.saeloun.com/2021/11/25/ecmascript-top-level-await/
The await used to setup random generator can be removed. This await has causes issues on iOS.
await (async function() {...})()
->
(async function() {...})()
The text was updated successfully, but these errors were encountered: