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

hyperbee

Package Overview
Dependencies
Maintainers
2
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 2.7.0 to 2.7.1

2

index.js

@@ -938,3 +938,3 @@ const codecs = require('codecs')

for await (const data of this.stream) { // eslint-disable-line
return { done: false, value: { current: this.current, previous: this.previous } }
return { done: false, value: [this.current, this.previous] }
}

@@ -941,0 +941,0 @@ } finally {

{
"name": "hyperbee",
"version": "2.7.0",
"version": "2.7.1",
"description": "An append-only B-tree running on a Hypercore.",

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

@@ -241,3 +241,3 @@ # Hyperbee 🐝

```js
for await (const { current, previous } of watcher) {
for await (const [current, previous] of watcher) {
console.log(current.version)

@@ -244,0 +244,0 @@ console.log(previous.version)

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