Skip to content

Instantly share code, notes, and snippets.

@deepal
Created January 15, 2020 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deepal/eb9e6d954b3fc20fa5bb06ab1e53dd27 to your computer and use it in GitHub Desktop.
Save deepal/eb9e6d954b3fc20fa5bb06ab1e53dd27 to your computer and use it in GitHub Desktop.
const wait = () => new Promise((resolve) => {
setTimeout(() => {}, 5000)
})
const fn = (async () => {
return wait();
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment