Created
November 10, 2015 10:00
-
-
Save elrrrrrrr/ac6272ed0f75ed50e7b5 to your computer and use it in GitHub Desktop.
promise wait
This file contains 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 wait(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms || 1)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment