UNPKG

snappy-utils

Version:

A lightweight and efficient JavaScript utility library packed with commonly used helper functions like capitalize, debounce, deepClone, flattenArray, isPrime, and more. Ideal for developers who want a simple yet powerful toolkit to streamline everyday cod

13 lines (12 loc) 271 B
function debounce(fn, delay) { let timeoutID; return function(...args) { if (timeoutID) { clearTimeout(timeoutID); } timeoutID = setTimeout(() => { fn.apply(this, args); }, delay); }; } module.exports = debounce;