Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created February 6, 2015 19:45
Show Gist options
  • Save santosh79/c1804617e87a645622ab to your computer and use it in GitHub Desktop.
Save santosh79/c1804617e87a645622ab to your computer and use it in GitHub Desktop.
var runsLater = function(runAfterTime) {
return function(func) {
setTimeout(func, runAfterTime);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment