Returns true if a file is binary. Checks the actual contents, since extensions are not reliable. Basic wrapper for isbinaryfile to support vinyl files.
npm install file-is-binary> Returns true if a file is binary. Checks the actual contents, since extensions are not reliable. Basic wrapper for isbinaryfile to support vinyl files.
Install with npm:
``sh`
$ npm install --save file-is-binary
Uses isbinaryfile to check the file contents and return
`js
var isBinary = require('file-is-binary');
var file = new File({path: 'foo.gif', contents: fs.readFileSync('foo.gif')});
console.log(isBinary(file));
var file = new File({path: 'bar.txt', contents: fs.readFileSync('bar.txt')});
console.log(isBinary(file));
//=> false
`
* file-contents: Set the contents property on a file object. Abstraction from vinyl-fs to support stream or… more | contentsstat property on a file object. Abstraction from vinyl-fs to support stream or non-stream usage."" class="text-primary hover:underline" target="_blank" rel="noopener noreferrer">homepage
* file-stat: Set the property on a file object. Abstraction from vinyl-fs to support stream or… more | stat.isBinary() property on a file object. Abstraction from vinyl-fs to support stream or non-stream usage."" class="text-primary hover:underline" target="_blank" rel="noopener noreferrer">homepage
* gulp-is-binary: Adds an function to the file object, similar to file.isNull() and file.isStream(). | .isBinary(" class="text-primary hover:underline" target="_blank" rel="noopener noreferrer">homepage function to the file object, similar to file.isNull() and file.isStream().")
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guide for advice on opening issues, pull requests, and coding standards.
_(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)_
To generate the readme, run the following command:
`sh`
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
`sh``
$ npm install && npm test
Jon Schlinkert
* github/jonschlinkert
* twitter/jonschlinkert
Copyright © 2017, Jon Schlinkert.
Released under the MIT License.
*
_This file was generated by verb-generate-readme, v0.6.0, on May 19, 2017._