fore.st/src/util/call-once.js
2018-04-07 15:30:30 -07:00

8 lines
137 B
JavaScript

export function callOnce(fn) {
let called = false;
return (...args) => {
called || fn(...args), called = true;
};
}