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');
//=> falsebinary-extensions- List of binary file extensionsis-text-path- Check if a filepath is a text file
MIT © Sindre Sorhus