UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

14 lines (13 loc) 257 B
export function createDebounce() { let timeout = null return ( fn: (...args: unknown[]) => unknown, ms: number, ...args: unknown[] ) => { if (timeout) { clearTimeout(timeout) } timeout = setTimeout(fn, ms, ...args) } }