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

ee-async

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-async - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

2

lib/each.js

@@ -103,3 +103,3 @@

while(i--) {
if (item && item instanceof Error) return callback(item);
if (items[i] instanceof Error) return callback(items[i]);
}

@@ -106,0 +106,0 @@ callback(new Error('There were '+errCount+' errors while processing your data!').setName('ProcessingError'), items);

@@ -52,3 +52,3 @@

while(i--) {
if (results && results instanceof Error) return callback(results);
if (results[i] instanceof Error) return callback(results[i]);
}

@@ -55,0 +55,0 @@ callback(new Error('There were '+errCount+' errors while processing your data!').setName('ProcessingError'), results);

{
"name" : "ee-async"
, "description" : "simpler control flow for asynchronous operations"
, "version" : "0.2.1"
, "version" : "0.2.2"
, "homepage" : "https://github.com/eventEmitter/ee-async"

@@ -6,0 +6,0 @@ , "author" : "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)"

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