js-util

Home > rc-js-util > _Fp > debounce

_Fp.debounce property

Creates a function that will proxy calls to functionToProxy when wait time has passed since the last call, using the most recent arguments. Where immediate is true, the function immediately proxies the call and will not proxy again until wait time passes since the last call.

Signature:

static readonly debounce: typeof fpDebounce;

Remarks

As per underscore’s debounce, except that returns have been disallowed. See fpDebounce().