Initial commit 🍀
This commit is contained in:
12
src/web/app/common/scripts/uuid.js
Normal file
12
src/web/app/common/scripts/uuid.js
Normal file
@@ -0,0 +1,12 @@
|
||||
module.exports = function () {
|
||||
var uuid = '', i, random;
|
||||
for (i = 0; i < 32; i++) {
|
||||
random = Math.random() * 16 | 0;
|
||||
|
||||
if (i == 8 || i == 12 || i == 16 || i == 20) {
|
||||
uuid += '-'
|
||||
}
|
||||
uuid += (i == 12 ? 4 : (i == 16 ? (random & 3 | 8) : random)).toString(16);
|
||||
}
|
||||
return uuid;
|
||||
}
|
Reference in New Issue
Block a user