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

hamt-sharding

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hamt-sharding - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

CHANGELOG.md

4

package.json
{
"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 @@ }

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