Socket
Socket
Sign inDemoInstall

pumpify

Package Overview
Dependencies
14
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.4 to 1.3.5

8

index.js

@@ -5,5 +5,5 @@ var pump = require('pump')

var toArray = function(arguments) {
if (!arguments.length) return []
return Array.isArray(arguments[0]) ? arguments[0] : Array.prototype.slice.call(arguments)
var toArray = function(args) {
if (!args.length) return []
return Array.isArray(args[0]) ? args[0] : Array.prototype.slice.call(args)
}

@@ -56,2 +56,2 @@

module.exports = define({destroy:false})
module.exports.obj = define({destroy:false, objectMode:true, highWaterMark:16})
module.exports.obj = define({destroy:false, objectMode:true, highWaterMark:16})
{
"name": "pumpify",
"version": "1.3.4",
"version": "1.3.5",
"description": "Combine an array of streams into a single duplex stream using pump and duplexify",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc