UNPKG

alinea

Version:
16 lines (14 loc) 290 B
import "../../chunks/chunk-NZLE2WMY.js"; // src/core/util/Debounce.ts function debounce(func, delay) { let timeoutId; return function debounced(...args) { clearTimeout(timeoutId); timeoutId = setTimeout(() => { func(...args); }, delay); }; } export { debounce };