frontend build

This commit is contained in:
bbh
2025-07-30 21:24:17 +08:00
commit f72111e716
101 changed files with 15364 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
export const randomEmail = () =>
`test_${Math.random().toString(36).substring(7)}@example.com`
export const randomTeamName = () =>
`Team ${Math.random().toString(36).substring(7)}`
export const randomPassword = () => `${Math.random().toString(36).substring(2)}`
export const slugify = (text: string) =>
text
.toLowerCase()
.replace(/\s+/g, "-")
.replace(/[^\w-]+/g, "")