Skip to content

Instantly share code, notes, and snippets.

@0x4a
Created June 1, 2014 04:16
Show Gist options
  • Save 0x4a/00e155af0f70935c6faf to your computer and use it in GitHub Desktop.
Save 0x4a/00e155af0f70935c6faf to your computer and use it in GitHub Desktop.
javascript sleep function - #js
function sleep(millis, callback) {
setTimeout(function()
{ callback(); }
, millis);
}
/*
Example of usage:
console.log(process.argv);
function foobar_cont(){
console.log("finished.");
};
sleep(3000, foobar_cont);
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment