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

map-stream

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

map-stream - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

7

index.js

@@ -18,3 +18,2 @@ //filter will reemit the data if cb(err,pass) pass is truthy

var stream = new Stream()
, self = this
, inputs = 0

@@ -28,4 +27,4 @@ , outputs = 0

this.opts = opts || {};
var errorEventName = this.opts.failures ? 'failure' : 'error';
opts = opts || {};
var errorEventName = opts.failures ? 'failure' : 'error';

@@ -72,3 +71,3 @@ // Items that are not ready to be written yet (because they would come out of

if (!err || self.opts.failures) {
if (!err || opts.failures) {
queueData(data, number)

@@ -75,0 +74,0 @@ }

{
"name": "map-stream",
"version": "0.0.6",
"version": "0.0.7",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "construct pipes of streams of events",

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