Socket
Socket
Sign inDemoInstall

minipass

Package Overview
Dependencies
Maintainers
1
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 1.1.3 to 1.1.4

.nyc_output/115b1a339723d104bd57895d15330a87.json

3

index.js

@@ -26,2 +26,5 @@ 'use strict'

get writable () { return true }
get readable () { return true }
write (chunk, encoding, cb) {

@@ -28,0 +31,0 @@ if (this[EOF])

2

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

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

@@ -6,2 +6,4 @@ const MiniPass = require('../')

let mp = new MiniPass()
t.equal(mp.readable, true)
t.equal(mp.writable, true)
t.equal(mp.write('hello'), false)

@@ -8,0 +10,0 @@ let dest = new MiniPass()

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