hamt-sharding
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "hamt-sharding", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "JavaScript implementation of sharding using hash array mapped tries", | ||
@@ -46,6 +46,4 @@ "leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>", | ||
"contributors": [ | ||
"David Dias <daviddias.p@gmail.com>", | ||
"Pedro Teixeira <i@pgte.me>", | ||
"achingbrain <alex@achingbrain.net>" | ||
] | ||
} |
@@ -73,3 +73,3 @@ 'use strict' | ||
async * eachLeafSeries () { | ||
* eachLeafSeries () { | ||
const children = this._children.compactArray() | ||
@@ -79,3 +79,3 @@ | ||
if (child instanceof Bucket) { | ||
for await (const c2 of child.eachLeafSeries()) { | ||
for (const c2 of child.eachLeafSeries()) { | ||
yield c2 | ||
@@ -82,0 +82,0 @@ } |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
297296
15
2934
1