1
0
Fork 0
mirror of synced 2024-06-17 09:55:09 +12:00
budibase/packages/backend-core/tests/utilities/structures/common.ts

8 lines
131 B
TypeScript
Raw Normal View History

2022-11-12 04:43:41 +13:00
import { v4 as uuid } from "uuid"
2022-10-07 04:03:47 +13:00
export { v4 as uuid } from "uuid"
2022-11-12 04:43:41 +13:00
export const email = () => {
return `${uuid()}@test.com`
}