solorice/vscode/extensions/ritwickdey.liveserver-5.7.5/node_modules/is-binary-path
2022-04-28 20:54:44 +03:00
..
index.d.ts Added vscode settings 2022-04-28 20:54:44 +03:00
index.js Added vscode settings 2022-04-28 20:54:44 +03:00
license Added vscode settings 2022-04-28 20:54:44 +03:00
package.json Added vscode settings 2022-04-28 20:54:44 +03:00
readme.md Added vscode settings 2022-04-28 20:54:44 +03:00

is-binary-path Build Status

Check if a file path is a binary file

Install

$ npm install is-binary-path

Usage

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

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

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

License

MIT © Sindre Sorhus, Paul Miller