Skip to content

Instantly share code, notes, and snippets.

@neatshell
Created May 8, 2019 16:53
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 neatshell/7903c9c34e99ee04174226fa5349efce to your computer and use it in GitHub Desktop.
Save neatshell/7903c9c34e99ee04174226fa5349efce to your computer and use it in GitHub Desktop.
function sleep(milliseconds) {
var start = new Date().getTime();
for (var i = 0; i < 1e7; i++) {
if ((new Date().getTime() - start) > milliseconds){
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment