UNPKG

hta

Version:

The tiny framework for building Hyper Text Application with ease

9 lines (7 loc) 212 B
import executeDebounce from "../core/executeDebounce"; export default function debounce(ms, fn) { let prev; return function () { prev = executeDebounce(() => fn.apply(null, arguments), ms, prev); }; }