Skip to content

Instantly share code, notes, and snippets.

@tag1216
Created December 14, 2018 02:24
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 tag1216/fa0afa09f1a6c4f577ed906220bf7575 to your computer and use it in GitHub Desktop.
Save tag1216/fa0afa09f1a6c4f577ed906220bf7575 to your computer and use it in GitHub Desktop.
Javascript sleep
async function sleep(msec: number) {
return new Promise(resolve => setTimeout(resolve, msec));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment