1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-mobile/utils/debounce.tsx

13 lines
336 B
TypeScript
Raw Normal View History

import PoorManIntervals from '@joplin/lib/PoorManIntervals';
function debounce(func: (...args: any[])=> void, timeout: number) {
let timer: number;
return (...args: any[]) => {
PoorManIntervals.clearTimeout(timer);
timer = PoorManIntervals.setTimeout(() => { func.apply(this, args); }, timeout);
};
}
export default debounce;