Skip to content

Instantly share code, notes, and snippets.

@maatthc
Created July 17, 2021 09:19
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 maatthc/e5272d10e95354584476fbdc9293c98a to your computer and use it in GitHub Desktop.
Save maatthc/e5272d10e95354584476fbdc9293c98a to your computer and use it in GitHub Desktop.
Sleep (or wait) function in TypeScript (^4.3.5)
function sleep(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms, ''))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment