Skip to content

Instantly share code, notes, and snippets.

@e-mihaylin
Created September 7, 2018 12:15
Show Gist options
  • Save e-mihaylin/201b6524f02adc58e9a8f8401687488b to your computer and use it in GitHub Desktop.
Save e-mihaylin/201b6524f02adc58e9a8f8401687488b to your computer and use it in GitHub Desktop.
const once = fn => ((...a) => {
let executed = false;
return (...a) => {
if (!executed) {
executed = true;
return fn(...a);
}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment