Skip to content

Instantly share code, notes, and snippets.

@marani
Last active September 14, 2016 15:20
Show Gist options
  • Save marani/2851780ceadfac0ce1e5c77289dd931e to your computer and use it in GitHub Desktop.
Save marani/2851780ceadfac0ce1e5c77289dd931e to your computer and use it in GitHub Desktop.
once
function once(fn) {
var executed = false;
var executer() {
if (!executed) {
fn.apply(arguments);
executed = true;
} else {
console.log('function already executed');
}
}
return executer;
}
once(fn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment