is-binary-path
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -11,9 +11,3 @@ 'use strict'; | ||
module.exports = function (filepath) { | ||
var ext = path.extname(filepath).slice(1); | ||
if (ext === '') { | ||
return false; | ||
} | ||
return ext in exts; | ||
return path.extname(filepath).slice(1).toLowerCase() in exts; | ||
}; |
{ | ||
"name": "is-binary-path", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Check if a filepath is a binary file", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -29,2 +29,3 @@ # is-binary-path [![Build Status](https://travis-ci.org/sindresorhus/is-binary-path.svg?branch=master)](https://travis-ci.org/sindresorhus/is-binary-path) | ||
- [`binary-extensions`](https://github.com/sindresorhus/binary-extensions) - List of binary file extensions | ||
- [`is-text-path`](https://github.com/sindresorhus/is-text-path) - Check if a filepath is a text file | ||
@@ -31,0 +32,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2787
4
35
10
1