Skip to content

Instantly share code, notes, and snippets.

@vkgtaro
Created June 5, 2012 10:19
Show Gist options
  • Select an option

  • Save vkgtaro/2874202 to your computer and use it in GitHub Desktop.

Select an option

Save vkgtaro/2874202 to your computer and use it in GitHub Desktop.
function sleep( t ){
var current_time = new Date().getTime();
var now_time = current_time;
var end_time = current_time + 1000 * t;
while( now_time < end_time ){
now_time = new Date().getTime();
}
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment