DEV/DEV4.1/tp4/ex3/modules/helpers.js
2024-03-01 15:39:57 +01:00

12 lines
166 B
JavaScript

function debounce(f,wait)
{
let timeout
return function(...args){
clearTimeout(timeout)
timeout=setTimeout(()=>f(...args),wait)
}
}
export default debounce