Skip to content

Instantly share code, notes, and snippets.

@ff6347
Last active September 25, 2019 06:28
Show Gist options
  • Select an option

  • Save ff6347/7fbffde24b62cc5ba499ca6198d67f6d to your computer and use it in GitHub Desktop.

Select an option

Save ff6347/7fbffde24b62cc5ba499ca6198d67f6d to your computer and use it in GitHub Desktop.
async main function for JS without writing it again
void (async function main() {
console.log(foo);
})()
.catch(err => {
console.error(err);
// throw err;
})
.finally(res => {
console.log("finally");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment