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.3 to 1.3.4

4

index.js
var pump = require('pump')
var util = require('util')
var inherits = require('inherits')
var Duplexify = require('duplexify')

@@ -18,3 +18,3 @@

util.inherits(Pumpify, Duplexify)
inherits(Pumpify, Duplexify)

@@ -21,0 +21,0 @@ Pumpify.prototype.setPipeline = function() {

{
"name": "pumpify",
"version": "1.3.3",
"version": "1.3.4",
"description": "Combine an array of streams into a single duplex stream using pump and duplexify",

@@ -8,2 +8,3 @@ "main": "index.js",

"duplexify": "^3.1.2",
"inherits": "^2.0.1",
"pump": "^1.0.0"

@@ -10,0 +11,0 @@ },

@@ -26,2 +26,4 @@ # pumpify

var untar = pumpify(zlib.createGunzip(), tar.extract('output-folder'))
// you can also pass an array instead
// var untar = pumpify([zlib.createGunzip(), tar.extract('output-folder')])

@@ -51,2 +53,6 @@ fs.createReadStream('some-gzipped-tarball.tgz').pipe(untar)

MIT
MIT
## Related
`pumpify` is part of the [mississippi stream utility collection](https://github.com/maxogden/mississippi) which includes more useful stream modules similar to this one.

Sorry, the diff of this file is not supported yet

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