Last active
September 14, 2016 15:20
-
-
Save marani/2851780ceadfac0ce1e5c77289dd931e to your computer and use it in GitHub Desktop.
once
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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