forked from github/plane
49f37e0346
* fix: emoji render function * fix: emoji render function
19 lines
400 B
TypeScript
19 lines
400 B
TypeScript
export const debounce = (func: any, wait: number, immediate: boolean = false) => {
|
|
let timeout: any;
|
|
|
|
return function executedFunction(...args: any) {
|
|
const later = () => {
|
|
timeout = null;
|
|
if (!immediate) func(...args);
|
|
};
|
|
|
|
const callNow = immediate && !timeout;
|
|
|
|
clearTimeout(timeout);
|
|
|
|
timeout = setTimeout(later, wait);
|
|
|
|
if (callNow) func(...args);
|
|
};
|
|
};
|