A throttle function ensures that a function is not called more frequently than a specified interval. It allows the function to be called at most once every specified delay.
The function to throttle.
The minimum delay between function calls.
A throttle function ensures that a function is not called more frequently than a specified interval. It allows the function to be called at most once every specified delay.