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

asyncjoin

Package Overview
Dependencies
Maintainers
0
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.2.3 to 1.2.4

6

join/HashJoin.js

@@ -109,5 +109,7 @@

let hash = this.funHash(item);
if (!this.leftMap.has(hash))
this.leftMap.set(hash, []);
let arr = this.leftMap.get(hash);
if (!arr) {
arr = [];
this.leftMap.set(hash, arr);
}
arr.push(item);

@@ -114,0 +116,0 @@ }

@@ -113,2 +113,6 @@

let arr = map.get(hash);
if (!arr) {
arr = [];
map.set(hash, arr);
}
arr.push(item);

@@ -115,0 +119,0 @@ }

{
"name": "asyncjoin",
"version": "1.2.3",
"version": "1.2.4",
"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