
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
gulp-is-binary
Advanced tools
Adds an `.isBinary()` function to the `file` object, similar to `file.isNull()` and `file.isStream()`.
Adds an .isBinary() function to the file object, similar to file.isNull() and file.isStream().
Install with npm:
$ npm install --save gulp-is-binary
var gulp = require('gulp');
var isBinary = require('gulp-is-binary');
gulp.task('default', function() {
return gulp.src('some/files/*.*')
.pipe(isBinary())
});
var gulp = require('gulp');
var isBinary = require('gulp-is-binary');
gulp.task('default', function() {
return gulp.src('some/files/*.*')
.pipe(isBinary())
.pipe(through.obj(function(file, enc, next) {
if (file.isNull()) {
next(null, file);
return;
}
console.log(file.isBinary());
next(null, file);
}))
});
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)
To generate the readme and API documentation with verb:
$ npm install -g verb verb-generate-readme && verb
Install dev dependencies:
$ npm install -d && npm test
Jon Schlinkert
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb-generate-readme, v0.1.28, on August 02, 2016.
FAQs
Adds an `.isBinary()` function to the `file` object, similar to `file.isNull()` and `file.isStream()`.
The npm package gulp-is-binary receives a total of 151 weekly downloads. As such, gulp-is-binary popularity was classified as not popular.
We found that gulp-is-binary demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.