UNPKG

@antv/x6

Version:

JavaScript diagramming library that uses SVG and HTML for rendering.

12 lines 291 B
export function debounce(fn, delay = 60) { let timer = null; return (...args) => { if (timer) { clearTimeout(timer); } timer = window.setTimeout(() => { fn.apply(this, args); }, delay); }; } //# sourceMappingURL=util.js.map