Make the given function a throttled one.
const func = throttle( 100, () => { // some expensive procedure} );func();func();func(); Copy
const func = throttle( 100, () => { // some expensive procedure} );func();func();func();
Make the given function a throttled one.