doc/node_modules/is-binary-path
2021-05-05 15:50:12 +02:00
..
index.js Move content to repo root 2021-05-05 15:50:12 +02:00
license Move content to repo root 2021-05-05 15:50:12 +02:00
package.json Move content to repo root 2021-05-05 15:50:12 +02:00
readme.md Move content to repo root 2021-05-05 15:50:12 +02:00

is-binary-path Build Status

Check if a filepath is a binary file

Install

$ npm install --save is-binary-path

Usage

var isBinaryPath = require('is-binary-path');

isBinaryPath('src/unicorn.png');
//=> true

isBinaryPath('src/unicorn.txt');
//=> false

License

MIT © Sindre Sorhus