Socket
Socket
Sign inDemoInstall

hypertrie

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hypertrie - npm Package Compare versions

Comparing version 4.5.1 to 4.6.0

6

index.js

@@ -54,4 +54,4 @@ const events = require('events')

this._extension = opts.extension || new Extension(this)
if (!opts.extension) this._extension.outgoing = this.feed.registerExtension('hypertrie', this._extension)
this._extension = opts.extension === false ? null : (opts.extension || new Extension(this))
if (!opts.extension && opts.extension !== false) this._extension.outgoing = this.feed.registerExtension('hypertrie', this._extension)

@@ -134,3 +134,3 @@ this._watchers = []

feed: this.feed,
extension: this._extension
extension: this._extension === null ? false : this._extension
})

@@ -137,0 +137,0 @@ }

{
"name": "hypertrie",
"version": "4.5.1",
"version": "4.6.0",
"description": "Distributed single writer key/value store",

@@ -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