2666. Allow One Function Call ¶ TypeScript 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19type JSONValue = | null | boolean | number | string | JSONValue[] | { [key: string]: JSONValue }; type OnceFn = (...args: JSONValue[]) => JSONValue | undefined; function once(fn: Function): OnceFn { let isCalled = false; return function (...args) { if (isCalled) { return; } isCalled = true; return fn(...args); }; } Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.