suyiScreen/node_modules/is-binary-path
何嘉峣 86fcfee13c 代码提交 2022-12-09 09:24:19 +08:00
..
index.js 代码提交 2022-12-09 09:24:19 +08:00
license 代码提交 2022-12-09 09:24:19 +08:00
package.json 代码提交 2022-12-09 09:24:19 +08:00
readme.md 代码提交 2022-12-09 09:24:19 +08:00

readme.md

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