Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
is-binary-path
Advanced tools
The is-binary-path npm package is used to determine if a given file path is a binary file or not. It checks the file extension against a list of known binary file types.
Check if a file path is a binary file
This feature allows you to check if a file path points to a binary file by using the file extension. It returns true if the file is a binary file, otherwise false.
const isBinaryPath = require('is-binary-path');
console.log(isBinaryPath('image.png')); // true
console.log(isBinaryPath('document.txt')); // false
The binaryextensions package provides a list of binary file extensions. It is similar to is-binary-path but does not provide a function to check the file path. Instead, it provides the raw data to be used in any way needed.
The textextensions package is the opposite of is-binary-path. It provides a list of text file extensions. This can be used in conjunction with is-binary-path to determine if a file is neither binary nor text.
The istextorbinary package provides more comprehensive functionality than is-binary-path. It not only checks file extensions but also inspects file contents to determine if a file is text or binary. This can be more accurate than is-binary-path which only uses file extensions.
Check if a filepath is a binary file
$ npm install --save is-binary-path
var isBinaryPath = require('is-binary-path');
isBinaryPath('src/unicorn.png');
//=> true
isBinaryPath('src/unicorn.txt');
//=> false
binary-extensions
- List of binary file extensionsMIT © Sindre Sorhus
FAQs
Check if a file path is a binary file
The npm package is-binary-path receives a total of 17,441,858 weekly downloads. As such, is-binary-path popularity was classified as popular.
We found that is-binary-path demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.