aboutsummaryrefslogtreecommitdiff
path: root/node_modules/md5-hex/browser.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/md5-hex/browser.js')
-rw-r--r--node_modules/md5-hex/browser.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/md5-hex/browser.js b/node_modules/md5-hex/browser.js
deleted file mode 100644
index d6c2da0bf..000000000
--- a/node_modules/md5-hex/browser.js
+++ /dev/null
@@ -1,10 +0,0 @@
-'use strict';
-const md5OMatic = require('md5-o-matic');
-
-module.exports = input => {
- if (Array.isArray(input)) {
- input = input.join('');
- }
-
- return md5OMatic(input);
-};