Skip to content

Instantly share code, notes, and snippets.

@jbail
Created April 12, 2011 17:34
Show Gist options
  • Save jbail/915987 to your computer and use it in GitHub Desktop.
Save jbail/915987 to your computer and use it in GitHub Desktop.
A possible implementation of a JavaScript sleep function
function sleep (duration, fn) {
setTimeout(fn, duration);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment