UNPKG

ziko

Version:

a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities

9 lines 219 B
export const useThrottle=(fn,delay)=>{ let lastTime=0; return (...args)=>{ const now=new Date().getTime() if(now-lastTime<delay)return; lastTime=now; fn(...args); } }