FunctionsCommonThrottleCommonThrottle CallableCommonThrottle(func: Function): FunctionCreates a throttling wrapper for the provided function with the provided wait time. If the wrapped function has been successfully called within the wait time, further call attempts will be delayed until the wait time has passed.Parametersfunc: FunctionThe function to throttleReturns FunctionA throttled version of the provided function
Creates a throttling wrapper for the provided function with the provided wait time. If the wrapped function has been successfully called within the wait time, further call attempts will be delayed until the wait time has passed.