Adding node_modules

This commit is contained in:
Deepak Sattiraju
2019-09-23 15:17:37 +05:30
parent 8d56cba217
commit 8f53944957
312 changed files with 47895 additions and 0 deletions
+8
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);
};