Defined in: debouncer.ts:5
• TFn extends AnyFunction
canLeadingExecute: boolean;
canLeadingExecute: boolean;
Defined in: debouncer.ts:9
Whether the debouncer can execute on the leading edge of the timeout
executionCount: number;
executionCount: number;
Defined in: debouncer.ts:13
Number of function executions that have been completed
isPending: boolean;
isPending: boolean;
Defined in: debouncer.ts:17
Whether the debouncer is waiting for the timeout to trigger execution
lastArgs: undefined | Parameters<TFn>;
lastArgs: undefined | Parameters<TFn>;
Defined in: debouncer.ts:21
The arguments from the most recent call to maybeExecute
status: "disabled" | "idle" | "pending";
status: "disabled" | "idle" | "pending";
Defined in: debouncer.ts:25
Current execution status - 'idle' when not active, 'pending' when waiting for timeout
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.