1
0
Fork 0
mirror of synced 2024-09-17 01:38:40 +12:00
budibase/packages/server/src/db/newid.ts
2024-02-01 16:47:41 +01:00

5 lines
98 B
TypeScript

import { v4 } from "uuid"
export default function (): string {
return v4().replace(/-/g, "")
}