TeaWeb/shared/js/crypto/uid.ts
2020-03-27 23:36:57 +01:00

8 lines
No EOL
252 B
TypeScript

export function guid() {
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
}