is-binary
v0.1.0
Published
Detects if a file is binary based on its content
Downloads
39,271
Maintainers
Readme
is-binary
Detects if a file is binary based on its content.
Usage
isBinary(content)
Example:
var assert = require('assert');
var fs = require('fs');
var isBinary = require('is-binary');
assert.equal(isBinary(fs.readFileSync('sample.pdf', 'utf8')) === false);
Tests
npm test
Inspiration
Main source code extracted from https://github.com/bevry/istextorbinary/, MIT licensed.
Tests inspired by https://github.com/gjtorikian/isBinaryFile, MIT licensed.
License
MIT http://alessioalex.mit-license.org/