blocks the execution of fn, if less than delta_time_ms amount of time has passed since the previous non-rejected call.
fn
delta_time_ms
the time interval in milliseconds for throttling
the function to be throttled
Rest
a function (that takes arguments intended for fn) that returns the value of fn if it was not throttled, otherwise a THROTTLE_REJECT symbol is returned.
blocks the execution of
fn
, if less thandelta_time_ms
amount of time has passed since the previous non-rejected call.