UNPKG

@carto/react-core

Version:
12 lines (11 loc) 213 B
export function debounce(fn, ms) { let timer; return (...args) => { clearTimeout(timer); timer = setTimeout(() => { timer = null; fn.apply(this, args); }, ms); return timer; }; }