Skip to content

Instantly share code, notes, and snippets.

@amikitevich
Created April 8, 2019 21:57
Show Gist options
  • Save amikitevich/d3c67296fe49a23a5fdc55ca80b0babd to your computer and use it in GitHub Desktop.
Save amikitevich/d3c67296fe49a23a5fdc55ca80b0babd to your computer and use it in GitHub Desktop.
function sleep(delay) {
var start = new Date().getTime();
while (new Date().getTime() < start + delay);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment