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

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.2.3 to 4.3.0

9

lib/node.js

@@ -52,2 +52,11 @@ const sodium = require('sodium-universal')

Node.prototype.compare = function (other) {
const min = Math.min(this.length, other.length)
for (var i = 0; i < min; i++) {
const diff = this.path(i) - other.path(i)
if (diff !== 0) return diff
}
return 0
}
Node.prototype.final = function () {

@@ -54,0 +63,0 @@ if (this._finalized) return this

2

package.json
{
"name": "hypertrie",
"version": "4.2.3",
"version": "4.3.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