This commit is contained in:
YI FANG
2025-11-26 09:50:49 +08:00
commit 8155c9f95d
43 changed files with 7687 additions and 0 deletions

4
src/utils/cls.ts Normal file
View File

@@ -0,0 +1,4 @@
export const cls = (...xs: Array<string | false | null | undefined>) =>
xs.filter(Boolean).join(' ');