summaryrefslogtreecommitdiff
path: root/node_modules/uuid/lib/rng.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/uuid/lib/rng.js')
-rw-r--r--node_modules/uuid/lib/rng.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/node_modules/uuid/lib/rng.js b/node_modules/uuid/lib/rng.js
deleted file mode 100644
index 58f0dc9..0000000
--- a/node_modules/uuid/lib/rng.js
+++ /dev/null
@@ -1,8 +0,0 @@
-// 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);
-};