Socket
Socket
Sign inDemoInstall

multistream

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multistream - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

3

index.js

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

/*! multistream. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
var stream = require('readable-stream')

@@ -54,3 +55,3 @@

var chunk
while ((chunk = this._current.read()) !== null && this._drained) {
while (this._drained && (chunk = this._current.read()) !== null) {
this._drained = this.push(chunk)

@@ -57,0 +58,0 @@ }

{
"name": "multistream",
"description": "A stream that emits multiple other streams one after another (streams3)",
"version": "4.0.0",
"author": "Feross Aboukhadijeh <feross@feross.org> (http://feross.org/)",
"version": "4.0.1",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
"bugs": {

@@ -10,12 +14,12 @@ "url": "https://github.com/feross/multistream/issues"

"dependencies": {
"readable-stream": "^3.4.0"
"readable-stream": "^3.6.0"
},
"devDependencies": {
"airtap": "^2.0.3",
"array-to-stream": "^1.0.0",
"simple-concat": "^1.0.0",
"airtap": "^3.0.0",
"array-to-stream": "^1.0.2",
"simple-concat": "^1.0.1",
"standard": "*",
"string-to-stream": "^2.0.0",
"tape": "^4.0.0",
"through": "^2.3.4"
"string-to-stream": "^3.0.1",
"tape": "^5.0.1",
"through": "^2.3.8"
},

@@ -49,3 +53,17 @@ "homepage": "https://github.com/feross/multistream",

"test-node": "tape test/*.js"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}
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