UNPKG

quill-easy-color

Version:
12 lines (11 loc) 228 B
export function debounce(fn, delay) { let timestamp; return function (...args) { if (timestamp) { clearTimeout(timestamp); } timestamp = setTimeout(() => { fn.apply(this, args); }, delay); }; }