mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-12 13:15:18 -08:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
function s4(): string {
|
|
const s4 = Math.floor((1 + Math.random()) * 0x10000);
|
|
return s4.toString(16).substring(1);
|
|
}
|
|
|
|
export function guid(): string {
|
|
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
|
|
}
|