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