UNPKG
cloudapp-cli
Version:
beta (0.1.5-beta.3)
latest (0.1.4)
0.1.5-beta.3
0.1.5-beta.2
0.1.5-beta.1
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
cloudapp-cli
/
lib
/
uuid.js
7 lines
(5 loc)
•
149 B
JavaScript
View Raw
1
2
3
4
5
6
7
function
uuid
(
) {
const
timeLead =
1e6
;
return
(+
new
Date
() * timeLead +
Math
.
random
() * (timeLead -
1
)).
toString
(
36
); }
module
.
exports
= uuid;