10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
|
|
import { randomUUID } from 'crypto';
|
||
|
|
|
||
|
|
export function generateUuid(): string {
|
||
|
|
return randomUUID();
|
||
|
|
}
|
||
|
|
|
||
|
|
export function generateShortId(): string {
|
||
|
|
return Date.now().toString(36) + Math.random().toString(36).substring(2, 9);
|
||
|
|
}
|