Comparing version 1.3.4 to 1.3.5
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
177
8451