Skip to content

Instantly share code, notes, and snippets.

@christianmagill
Last active October 27, 2016 18:07
Show Gist options
  • Save christianmagill/840f3ef7e0723a84917bfd9ecbf83c70 to your computer and use it in GitHub Desktop.
Save christianmagill/840f3ef7e0723a84917bfd9ecbf83c70 to your computer and use it in GitHub Desktop.
function createFunctionWithTimeout(callback, opt_timeout) {
var called = false;
function fn() {
if (!called) {
called = true;
callback();
}
}
setTimeout(fn, opt_timeout || 1000);
return fn;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment