UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

14 lines (13 loc) • 252 B
function debounce(fn, delay = 300) { let timeout; return function debounced(...args) { clearTimeout(timeout); timeout = setTimeout(() => { fn(...args); }, delay); }; } export { debounce }; //# sourceMappingURL=debounce.js.map