some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / uuid / lib / rng.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/uuid/lib/rng.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/uuid/lib/rng.js
deleted file mode 100644 (file)
index 58f0dc9..0000000
+++ /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);
-};