Created
July 17, 2021 09:19
-
-
Save maatthc/e5272d10e95354584476fbdc9293c98a to your computer and use it in GitHub Desktop.
Sleep (or wait) function in TypeScript (^4.3.5)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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