1
0
Fork 0
mirror of synced 2024-10-06 13:04:36 +13:00
budibase/packages/backend-core/src/newid.ts

6 lines
87 B
TypeScript
Raw Normal View History

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