Comparing version 1.2.3 to 1.2.4
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12570
342