UNPKG

th-vue-material

Version:
14 lines (11 loc) 257 B
const debounce = (callback, wait) => { let timeout; return (...args) => { window.clearTimeout(timeout); timeout = window.setTimeout(() => { timeout = null; callback.apply(this, args); }, wait); }; }; export default debounce;