From 22dc20e9e52589c003b214528d361b9b17fa37f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E7=94=B0=E5=BC=98?= <1240092443@qq.com> Date: Mon, 21 Oct 2024 15:50:45 +0800 Subject: [PATCH] =?UTF-8?q?test:=E6=8F=90=E4=BA=A4=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/util/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/util/common.ts b/frontend/src/util/common.ts index 76998ec..26f5e3c 100644 --- a/frontend/src/util/common.ts +++ b/frontend/src/util/common.ts @@ -7,7 +7,7 @@ export const debounce = (func: Function, wait: number): Function => { timeout = setTimeout(() => func.apply(this, args), wait); }; }; - + // Throttle export const throttle = (func: Function, wait: number): Function => { let timeout: any;