summaryrefslogtreecommitdiffstats
path: root/node_modules/pbkdf2/lib/default-encoding.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/pbkdf2/lib/default-encoding.js')
-rw-r--r--node_modules/pbkdf2/lib/default-encoding.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/node_modules/pbkdf2/lib/default-encoding.js b/node_modules/pbkdf2/lib/default-encoding.js
deleted file mode 100644
index 4404fd2..0000000
--- a/node_modules/pbkdf2/lib/default-encoding.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var defaultEncoding
-/* istanbul ignore next */
-if (process.browser) {
- defaultEncoding = 'utf-8'
-} else if (process.version) {
- var pVersionMajor = parseInt(process.version.split('.')[0].slice(1), 10)
-
- defaultEncoding = pVersionMajor >= 6 ? 'utf-8' : 'binary'
-} else {
- defaultEncoding = 'utf-8'
-}
-module.exports = defaultEncoding