mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
export const debounce = ( callback, delayMs ) => {
|
|
let timeoutId = null;
|
|
return ( ...args ) => {
|
|
window.clearTimeout( timeoutId );
|
|
timeoutId = window.setTimeout( () => {
|
|
callback.apply( null, args );
|
|
}, delayMs );
|
|
};
|
|
};
|