You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
195 B

var IDX=36, HEX='';
while (IDX--) HEX += IDX.toString(36);
function uid(len) {
var str='', num = len || 11;
while (num--) str += HEX[Math.random() * 36 | 0];
return str;
}
exports.uid = uid;