Skip to content

Instantly share code, notes, and snippets.

@margani
Created December 6, 2021 05:41
Show Gist options
  • Save margani/61cda9736591b47730e58f69f93ee58a to your computer and use it in GitHub Desktop.
Save margani/61cda9736591b47730e58f69f93ee58a to your computer and use it in GitHub Desktop.
Top-level async function that never rejects #js #async
(async () => {
try {
var text = await main();
console.log(text);
} catch (e) {
// Deal with the fact the chain failed
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment