mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
test(e2e): force roboto font on all systems (#15993)
This commit is contained in:
@ -100,7 +100,7 @@ export function debounceEvent(event: EventEmitter, wait: number): EventEmitter {
|
||||
|
||||
export function debounce(func: (...args: any[]) => void, wait = 0) {
|
||||
let timer: any;
|
||||
return (...args: any[]): void => {
|
||||
return (...args: any[]): any => {
|
||||
clearTimeout(timer);
|
||||
timer = setTimeout(func, wait, ...args);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user