The function to throttle. Can accept any number of arguments.
The minimum time (in milliseconds) that must pass between successive calls. Defaults to 0.
A throttled version of the input function with an additional cancel()
method.
The cancel method can be used to reset the throttle timer.
Creates a throttled version of the passed function.
By calling the throttled function repeatedly, the original function is called once immediately and then at most once for every period of time determined by the
delay
argument.