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