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

asyncjoin

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asyncjoin - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

6

join/SymmetricHashJoin.js

@@ -42,3 +42,7 @@

{
return !this.left.ended || !this.right.ended || this.matchIdx < this.matches.length;
// The "!!this.match" condition was added as a workaround to race
// conditions and/or duplicate "end" events that may lead to premature
// cleanups of the "this.matches" array.
// See https://github.com/joachimvh/asyncjoin/issues/7
return !this.left.ended || !this.right.ended || (!!this.matches && this.matchIdx < this.matches.length);
}

@@ -45,0 +49,0 @@

2

package.json
{
"name": "asyncjoin",
"version": "1.0.1",
"version": "1.0.2",
"description": "Join library for asynciterator",

@@ -5,0 +5,0 @@ "license": "MIT",

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