Files
bknd/app/src/core/utils/uuid.ts
2024-11-16 12:01:47 +01:00

5 lines
82 B
TypeScript

// generates v4
export function uuid(): string {
return crypto.randomUUID();
}