Files
2024-10-10 16:44:08 +03:00

11 lines
250 B
JavaScript

export function debounce(callback, wait) {
let timeoutId = null;
return (...args) => {
window.clearTimeout(timeoutId);
timeoutId = window.setTimeout(() => {
callback.apply(null, args);
}, wait);
};
}