added node_modules

This commit is contained in:
Anumita Shenoy
2019-10-22 15:25:04 +05:30
parent 785a9d3ba2
commit d3bef39bdb
201 changed files with 15556 additions and 43 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);
};