khguide/templates/components/core/script.js

10 lines
202 B
JavaScript
Raw Permalink Normal View History

2025-02-10 00:57:14 +02:00
function debounce(callback, wait = 300) {
let timeoutId = null;
return (...args) => {
window.clearTimeout(timeoutId);
timeoutId = window.setTimeout(() => {
callback(...args);
}, wait);
};
}