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

hyperbee

Package Overview
Dependencies
Maintainers
1
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyperbee - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

8

iterators/range.js

@@ -5,2 +5,3 @@ module.exports = class RangeIterator {

this.stack = []
this.opened = false

@@ -32,3 +33,3 @@ this._limit = typeof opts.limit === 'number' ? opts.limit : -1

reverse: this._reverse,
checkpoint
checkpoint: this.opened ? checkpoint : []
}

@@ -38,2 +39,7 @@ }

async open () {
await this._open()
this.opened = true
}
async _open () {
if (this._checkpoint) {

@@ -40,0 +46,0 @@ for (let j = 0; j < this._checkpoint.length; j += 3) {

2

package.json
{
"name": "hyperbee",
"version": "0.0.9",
"version": "0.0.10",
"description": "An append-only Btree running on a Hypercore.",

@@ -5,0 +5,0 @@ "main": "index.js",

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