UNPKG

hta

Version:

The tiny framework for building Hyper Text Application with ease

10 lines (9 loc) 194 B
export default function executeDebounce(fn, ms, prevCall) { prevCall && prevCall.cancel(); let timer = setTimeout(fn, ms); return { cancel() { clearTimeout(timer); }, }; }