UNPKG

@form-create/utils

Version:
10 lines (8 loc) 239 B
export default function debounce(fn, wait) { var timeout = null; return function (...arg) { if (timeout !== null) clearTimeout(timeout); timeout = setTimeout(() => fn.call(this, ...arg), wait); } }