backoffice/node_modules/uuid/rng.js

5 lines
90 B
JavaScript
Raw Normal View History

2020-02-06 10:09:39 +00:00
var rb = require('crypto').randomBytes;
module.exports = function() {
return rb(16);
};