export function debounce(func: Function, timeout?: number) { let timer: number | undefined; return (...args: any[]) => {
確定! 回上一頁