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

minipass

Package Overview
Dependencies
Maintainers
7
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minipass - npm Package Compare versions

Comparing version 3.1.4 to 3.1.5

8

index.js

@@ -15,2 +15,3 @@ 'use strict'

const EMITTING_END = Symbol('emittingEnd')
const EMITTED_ERROR = Symbol('emittedError')
const CLOSED = Symbol('closed')

@@ -74,2 +75,3 @@ const READ = Symbol('read')

this[CLOSED] = false
this[EMITTED_ERROR] = null
this.writable = true

@@ -348,2 +350,4 @@ this.readable = true

this.removeAllListeners(ev)
} else if (ev === 'error' && this[EMITTED_ERROR]) {
fn.call(this, this[EMITTED_ERROR])
}

@@ -410,2 +414,4 @@ }

return
} else if (ev === 'error') {
this[EMITTED_ERROR] = data
}

@@ -463,4 +469,4 @@

this.on(DESTROYED, () => reject(new Error('stream destroyed')))
this.on('error', er => reject(er))
this.on('end', () => resolve())
this.on('error', er => reject(er))
})

@@ -467,0 +473,0 @@ }

2

package.json
{
"name": "minipass",
"version": "3.1.4",
"version": "3.1.5",
"description": "minimal implementation of a PassThrough stream",

@@ -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