mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 19:42:06 +00:00
7 lines
137 B
JavaScript
7 lines
137 B
JavaScript
export function callOnce(fn) {
|
|
let called = false;
|
|
|
|
return (...args) => {
|
|
called || fn(...args), called = true;
|
|
};
|
|
}
|