oef/node_modules/is-binary-path
2019-11-04 15:00:46 +01:00
..
index.js First commit 2019-11-04 15:00:46 +01:00
license First commit 2019-11-04 15:00:46 +01:00
package.json First commit 2019-11-04 15:00:46 +01:00
readme.md First commit 2019-11-04 15:00:46 +01: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