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

bare-stream

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bare-stream - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

12

index.js

@@ -92,3 +92,5 @@ const stream = require('streamx')

const result = super.end({ chunk, encoding })
const result = chunk !== undefined && chunk !== null
? super.end({ chunk, encoding })
: super.end()

@@ -172,3 +174,5 @@ if (cb) this.once('end', cb)

const result = super.end({ chunk, encoding })
const result = chunk !== undefined && chunk !== null
? super.end({ chunk, encoding })
: super.end()

@@ -242,3 +246,5 @@ if (cb) this.once('end', cb)

const result = super.end({ chunk, encoding })
const result = chunk !== undefined && chunk !== null
? super.end({ chunk, encoding })
: super.end()

@@ -245,0 +251,0 @@ if (cb) this.once('end', cb)

{
"name": "bare-stream",
"version": "2.1.1",
"version": "2.1.2",
"description": "Streaming data for JavaScript",

@@ -5,0 +5,0 @@ "exports": {

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