UNPKG

monphind-ui

Version:

A reactive component library built on top of the Web Components API

10 lines (9 loc) 239 B
export default (handle, timeout) => { let timeoutid; return function (...args) { timeoutid = setTimeout(() => { clearTimeout(timeoutid); handle.apply(this, [...args]); }, timeout); }; };