We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would require some babel code to handle the completion record
The text was updated successfully, but these errors were encountered:
Why not wrap evaluated code in a (async()=>{ /* code */ })().catch(e => {..}).then(r => {..})?
(async()=>{ /* code */ })().catch(e => {..}).then(r => {..})
it won't output the last statement though, it's possible to transform with babel (to capture the last statement) or like you said
edit : attempt: https://repl.it/@caub/babel-consolify, this kind of thing would allow to wrap in the iiafe
Sorry, something went wrong.
top-level await is still not fully specified; i'm not sure it's worth trying to implement yet.
No branches or pull requests
Would require some babel code to handle the completion record
The text was updated successfully, but these errors were encountered: