New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@navpreetdevpuri/trie-js

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@navpreetdevpuri/trie-js - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

3

lib/index.js

@@ -186,2 +186,5 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {

this._pushAllNextSubStrings(currentNode, prefix, queue, reverse);
if (currentNode._isEnd) {
queue.push([currentNode, prefix]);
}
}

@@ -188,0 +191,0 @@ while (queue.length > 0) {

2

package.json
{
"name": "@navpreetdevpuri/trie-js",
"version": "1.0.10",
"version": "1.0.11",
"description": "Trie data structure implementation in javascript",

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

@@ -235,2 +235,5 @@ type TrieNode = {

this._pushAllNextSubStrings(currentNode, prefix, queue, reverse);
if (currentNode._isEnd) {
queue.push([currentNode, prefix]);
}
}

@@ -237,0 +240,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