This commit is contained in:
Domen Kožar 2019-10-03 17:32:51 +02:00
parent ba979b5e7d
commit 265662ce90
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246
173 changed files with 13185 additions and 3 deletions

8
node_modules/uuid/lib/rng.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
// Unique ID creation requires a high quality random # generator. In node.js
// this is pretty straight-forward - we use the crypto API.
var crypto = require('crypto');
module.exports = function nodeRNG() {
return crypto.randomBytes(16);
};