Skip to content

Instantly share code, notes, and snippets.

@khajavi
Created March 1, 2015 21:22
Show Gist options
  • Save khajavi/e53ec2d9fb30ad3c86f0 to your computer and use it in GitHub Desktop.
Save khajavi/e53ec2d9fb30ad3c86f0 to your computer and use it in GitHub Desktop.
sleep in javascript
function sleep(time, callback) {
var stop = new Date().getTime();
while (new Date().getTime() < stop + time) {
;
}
callback();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment