Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created May 2, 2016 14:03
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 marcusshepp/d9f17f9e7e48f14b18b09e13660dda12 to your computer and use it in GitHub Desktop.
Save marcusshepp/d9f17f9e7e48f14b18b09e13660dda12 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;
}
}
}
// sleep(1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment