12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
export const randomEmail = () =>
|
|
`test_${Math.random().toString(36).substring(7)}@example.com`
|
|
|
|
export const randomTeamName = () =>
|
|
`Team ${Math.random().toString(36).substring(7)}`
|
|
|
|
export const slugify = (text: string) =>
|
|
text
|
|
.toLowerCase()
|
|
.replace(/\s+/g, "-")
|
|
.replace(/[^\w-]+/g, "")
|