Skip to content

Instantly share code, notes, and snippets.

@tuan
Created June 14, 2016 13:17
Show Gist options
  • Save tuan/f3d9e69c17452b2dfb6a6852fa939023 to your computer and use it in GitHub Desktop.
Save tuan/f3d9e69c17452b2dfb6a6852fa939023 to your computer and use it in GitHub Desktop.
function once(fn) {
let done = false;
return function(...args) {
if (done) {
return void 0;
}
done = true;
return fn.apply(this, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment