10 lines
353 B
JavaScript
10 lines
353 B
JavaScript
// Taken from http://stackoverflow.com/a/105074/515584
|
|
// Strictly speaking, it's not a real UUID, but it gets the job done here
|
|
export function createUUID() {
|
|
function s4() {
|
|
return Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
|
|
}
|
|
|
|
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
|
|
}
|