Skip to content

Instantly share code, notes, and snippets.

@ZackStone
Created May 11, 2017 19:29
Show Gist options
  • Save ZackStone/63e4a70270dcf9f088986fee712d6f55 to your computer and use it in GitHub Desktop.
Save ZackStone/63e4a70270dcf9f088986fee712d6f55 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