onetime
Install
npm install onetimeUsage
import onetime from 'onetime';
let index = 0;
const foo = onetime(() => ++index);
foo(); //=> 1
foo(); //=> 1
foo(); //=> 1
onetime.callCount(foo); //=> 3API
onetime(fn, options?)
fn
options
onetime.callCount(fn)
fn
Last updated