npm install

This commit is contained in:
peaceiris
2019-09-16 01:39:51 +09:00
parent d565469b6b
commit 2f1bf01c45
168 changed files with 13018 additions and 4 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);
};