live-server/node_modules/is-binary-path
2023-12-05 17:03:01 +00:00
..
index.js test 2023-12-05 17:03:01 +00:00
license test 2023-12-05 17:03:01 +00:00
package.json test 2023-12-05 17:03:01 +00:00
readme.md test 2023-12-05 17:03:01 +00: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