New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-util

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-util - npm Package Compare versions

Comparing version 2.2.10 to 2.2.11

8

lib/buffer.js

@@ -1,2 +0,2 @@

var through = require('through');
var through = require('through2');

@@ -10,3 +10,7 @@ module.exports = function(cb) {

};
return through(buf.push.bind(buf), end);
var push = function(data, enc, cb) {
buf.push(data);
cb();
};
return through.obj(push, end);
};

@@ -1,2 +0,2 @@

var pipeline = require('stream-combiner');
var pipeline = require('multipipe');

@@ -11,2 +11,2 @@ module.exports = function(){

};
};
};

@@ -1,7 +0,5 @@

var through = require('through');
var through = require('through2');
module.exports = function () {
return through(function (data) {
this.queue(data);
});
return through.obj();
};
{
"name": "gulp-util",
"description": "Utility functions for gulp plugins",
"version": "2.2.10",
"version": "2.2.11",
"homepage": "http://github.com/wearefractal/gulp-util",

@@ -15,5 +15,5 @@ "repository": "git://github.com/wearefractal/gulp-util.git",

"vinyl": "~0.2.1",
"through": "~2.3.4",
"through2": "~0.4.0",
"dateformat": "~1.0.7-1.2.3",
"stream-combiner": "0.0.4"
"multipipe": "~0.0.1"
},

@@ -20,0 +20,0 @@ "devDependencies": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc