Skip to content

Instantly share code, notes, and snippets.

@wescleymatos
Created August 4, 2014 18:50
Show Gist options
  • Select an option

  • Save wescleymatos/7716da8b487955daefba to your computer and use it in GitHub Desktop.

Select an option

Save wescleymatos/7716da8b487955daefba to your computer and use it in GitHub Desktop.
Sleep do php com javascript
function sleep(milliseconds) {
var start = new Date().getTime();
for (var i = 0; i < 1e7; i++) {
if ((new Date().getTime() - start) > milliseconds) {
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment