mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
15 lines
381 B
JavaScript
15 lines
381 B
JavaScript
|
// https://levelup.gitconnected.com/debounce-in-javascript-improve-your-applications-performance-5b01855e086
|
||
|
const debounce = (func, wait) => {
|
||
|
let timeout;
|
||
|
return function executedFunction(...args) {
|
||
|
const later = () => {
|
||
|
timeout = null;
|
||
|
func(...args);
|
||
|
};
|
||
|
clearTimeout(timeout);
|
||
|
timeout = setTimeout(later, wait);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default debounce;
|