UNPKG

vuestic-ui

Version:
16 lines (15 loc) 287 B
const throttle = (func, wait) => { let lastTime = 0; return function(...args) { const now = Date.now(); if (now - lastTime < wait) { return; } func.apply(this, args); lastTime = now; }; }; export { throttle as t }; //# sourceMappingURL=throttle.mjs.map