File size: 121 Bytes
2517be1
 
 
1
2
3
4
export function uuid(): string {
	return globalThis.crypto?.randomUUID?.() ?? Math.random().toString(36).substring(2);
}