mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
var crypto = require('crypto')
|
|
|
|
exports.uid = function(len) {
|
|
return crypto.randomBytes(Math.ceil(len * 3 / 4))
|
|
.toString('hex')
|
|
};
|
|
|
|
console.log(exports.uid(10));
|