UNPKG

@stryke/helpers

Version:

A package containing miscellaneous helper functions that are used across many different Storm Software projects.

2 lines (1 loc) 107 B
export function throttle(e,o){let t;return((...l)=>{const n=Date.now();(t==null||n-t>=o)&&(t=n,e(...l))})}