JS/TP04/EX03/modules/helpers.js
2024-03-08 16:34:15 +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