UNPKG

@findify/react-components

Version:
10 lines (9 loc) 221 B
export const debounce = (fn, wait?) => { let timeout; return function () { const ctx = this; const args = arguments; clearTimeout(timeout); timeout = setTimeout(() => fn.apply(ctx, args), wait || 0); }; };