Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

is-binary-path

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-binary-path - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

license

8

index.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc