Created
December 29, 2018 16:50
-
-
Save zmnv/38acb1c18d09538622fbbe436b959a47 to your computer and use it in GitHub Desktop.
Sync waiting time
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 sleep(milliseconds) { | |
const initiation = new Date().getTime(); | |
while ((new Date().getTime() - initiation) < milliseconds); | |
} | |
module.exports = sleep; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment