hn-hlw-app/hooks/useDebounce.js
2026-07-27 11:26:39 +08:00

12 lines
224 B
JavaScript

export default function useDebounce(callback, delay = 1000) {
let cd = false;
return (...args) => {
if (cd) return;
cd = true;
callback(...args);
setTimeout(() => {
cd = false;
}, delay);
}
}