ai-bot/app/_lib/utils.ts

17 lines
481 B
TypeScript
Raw Normal View History

2025-03-03 18:37:04 +08:00
export const PICTURE_PREFIX = 'https://newuitab.oss-cn-hangzhou.aliyuncs.com/ai_upload/downloads/'
2025-02-07 19:02:22 +08:00
export function doSearch(url: string, keyword: string) {
2025-03-03 18:37:04 +08:00
2025-02-07 19:02:22 +08:00
window.open(url.replace(/%s/g, keyword), "_blank")
2025-03-03 18:37:04 +08:00
}
export function debounce(fn: Function, delay: number) {
let timer: NodeJS.Timeout | null = null;
return function (this: any, ...args: any[]) {
if (timer) clearTimeout(timer);
timer = setTimeout(() => fn.apply(this, args), delay);
};
}