Eric Foster 35b96bc934 initial commit | 6 jaren geleden | |
---|---|---|
.. | ||
index.js | 6 jaren geleden | |
license | 6 jaren geleden | |
package.json | 6 jaren geleden | |
readme.md | 6 jaren geleden |
Check if a filepath is a binary file
$ npm install --save is-binary-path
var isBinaryPath = require('is-binary-path');
isBinaryPath('src/unicorn.png');
//=> true
isBinaryPath('src/unicorn.txt');
//=> false
binary-extensions
- List of binary file extensionsis-text-path
- Check if a filepath is a text fileMIT © Sindre Sorhus