Creates a throttled function that only invokes func at most once per every delay milliseconds (or once per browser frame). See this article for additional details.
func
delay
Function to throttle.
Delay in milliseconds.
The throttled function.
Creates a throttled function that only invokes
func
at most once per everydelay
milliseconds (or once per browser frame). See this article for additional details.