File size: 287 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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);
    };
}