diff options
Diffstat (limited to 'node_modules/is-binary-path/index.js')
-rw-r--r-- | node_modules/is-binary-path/index.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/node_modules/is-binary-path/index.js b/node_modules/is-binary-path/index.js deleted file mode 100644 index 6c8c7e7..0000000 --- a/node_modules/is-binary-path/index.js +++ /dev/null @@ -1,12 +0,0 @@ -'use strict'; -var path = require('path'); -var binaryExtensions = require('binary-extensions'); -var exts = Object.create(null); - -binaryExtensions.forEach(function (el) { - exts[el] = true; -}); - -module.exports = function (filepath) { - return path.extname(filepath).slice(1).toLowerCase() in exts; -}; |