DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
export function debounce(fn, wait = 500) {
let timeout = null;
return function (...args) {
const later = () => {
timeout = null;
fn(...args);
};
timeout && clearTimeout(timeout);
timeout = setTimeout(later, wait);
};
}