timepiece/node_modules/is-binary-path
2024-05-14 09:54:12 -05:00
..
index.js Initial code commit 2024-05-14 09:54:12 -05:00
license Initial code commit 2024-05-14 09:54:12 -05:00
package.json Initial code commit 2024-05-14 09:54:12 -05:00
readme.md Initial code commit 2024-05-14 09:54:12 -05: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