2 lines
95 B
TypeScript
2 lines
95 B
TypeScript
export const createUUID = () => Date.now().toString(36) + Math.random().toString(36).slice(2);
|