mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 21:00:41 +00:00
5 lines
93 B
TypeScript
5 lines
93 B
TypeScript
// Generate UUID v4
|
|
export function generateUUID(): string {
|
|
return crypto.randomUUID();
|
|
}
|