Skip to content

Instantly share code, notes, and snippets.

@pocotan001
Created April 20, 2013 11:41
Show Gist options
  • Save pocotan001/5425713 to your computer and use it in GitHub Desktop.
Save pocotan001/5425713 to your computer and use it in GitHub Desktop.
sleep.js
/**
* @param {Number} ms
*/
function sleep(ms) {
var end = Date.now() + ms;
while (Date.now() < end);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment