Skip to content

2666-allow-one-function-call

DevGod
DevGod
Vtuber
/**
* @param {Function} fn
* @return {Function}
*/
var once = function(fn) {
let counter = 0;
return function(...args){
counter++;
if(counter < 2){
return fn(...args);
}
return undefined;
}
};
/**
* let fn = (a,b,c) => (a + b + c)
* let onceFn = once(fn)
*
* onceFn(1,2,3); // 6
* onceFn(2,3,6); // returns undefined without calling fn
*/