Skip to content

Instantly share code, notes, and snippets.

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