From 4214ed9e100789332f44c3b9a59c044fad5f1527 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 6 Dec 2025 17:01:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9D=A1=E8=A7=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/utils/sleep.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 client/utils/sleep.ts diff --git a/client/utils/sleep.ts b/client/utils/sleep.ts new file mode 100644 index 0000000..b6c6795 --- /dev/null +++ b/client/utils/sleep.ts @@ -0,0 +1 @@ +export default (t: number) => new Promise((res) => setTimeout(res, t))