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

streamx

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

streamx - npm Package Compare versions

Comparing version 2.19.1 to 2.20.0

10

index.js

@@ -1116,2 +1116,10 @@ const { EventEmitter } = require('events')

function isEnded (stream) {
return !!stream._readableState && stream._readableState.ended
}
function isFinished (stream) {
return !!stream._writableState && stream._writableState.ended
}
function getStreamError (stream, opts = {}) {

@@ -1151,2 +1159,4 @@ const err = (stream._readableState && stream._readableState.error) || (stream._writableState && stream._writableState.error)

isStreamx,
isEnded,
isFinished,
getStreamError,

@@ -1153,0 +1163,0 @@ Stream,

2

package.json
{
"name": "streamx",
"version": "2.19.1",
"version": "2.20.0",
"description": "An iteration of the Node.js core streams with a series of improvements",

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

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