summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/unique-string/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/unique-string/index.js')
-rw-r--r--deps/npm/node_modules/unique-string/index.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/npm/node_modules/unique-string/index.js b/deps/npm/node_modules/unique-string/index.js
new file mode 100644
index 0000000000..5bc7787f4b
--- /dev/null
+++ b/deps/npm/node_modules/unique-string/index.js
@@ -0,0 +1,4 @@
+'use strict';
+const cryptoRandomString = require('crypto-random-string');
+
+module.exports = () => cryptoRandomString(32);