UNPKG

cloud-ui.vusion

Version:
12 lines (11 loc) 282 B
export function throttle(fn, delay) { let timer = null; return function () { const context = this; const args = arguments; clearTimeout(timer); timer = setTimeout(function () { fn.apply(context, args); }, delay); }; }