Created
November 7, 2019 09:48
-
-
Save AntoineDrouhin/570d2398abca18d7b793fe7b72124ac9 to your computer and use it in GitHub Desktop.
Sleep
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
// usage : await sleep(1000) | |
function sleep(milliseconds: number) { | |
return new Promise(resolve => setTimeout(resolve, milliseconds)) | |
} | |
export { sleep } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment