Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pumpify

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pumpify - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

1

index.js

@@ -48,2 +48,3 @@ var pump = require('pump')

if (this.destroyed) return onclose()
this.setWritable(w)

@@ -50,0 +51,0 @@ this.setReadable(r)

2

package.json
{
"name": "pumpify",
"version": "1.1.0",
"version": "1.1.1",
"description": "Combine an array of streams into a single duplex stream using pump and duplexify",

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

@@ -145,2 +145,20 @@ var tape = require('tape')

}, 100)
})
tape('early destroy', function(t) {
var a = through()
var b = through()
var c = through()
b.destroy = function() {
t.ok(true)
t.end()
}
var pipeline = pumpify()
pipeline.destroy()
setTimeout(function() {
pipeline.setPipeline(a, b, c)
}, 100)
})
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