@iapps/utilities
Version:
A list of useful utilitites to be used for javascript and typescript developer
12 lines (11 loc) • 345 B
JavaScript
exports.UUID = function () {
let uuid = '';
const randomAlphaNumeric =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let index = 0; index < 11; index++) {
uuid += randomAlphaNumeric.charAt(
Math.floor(Math.random() * randomAlphaNumeric.length)
);
}
return uuid;
}