You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
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

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",