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

fast-trie-search

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-trie-search - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

3

lib/cjs/trieSearch.js

@@ -82,3 +82,4 @@ "use strict";

if (startIndex >= searchStartIndex) {
root["w"] = [];
if (!root.w)
root["w"] = [];
root.w.push(str);

@@ -85,0 +86,0 @@ }

@@ -76,3 +76,4 @@ import parseRegex from "regex-parser";

if (startIndex >= searchStartIndex) {
root["w"] = [];
if (!root.w)
root["w"] = [];
root.w.push(str);

@@ -79,0 +80,0 @@ }

{
"name": "fast-trie-search",
"version": "1.2.0",
"version": "1.2.1",
"description": "This package can be used to implement a Search-As-You-Type funtionality and uses a Trie data structure ",

@@ -5,0 +5,0 @@ "exports": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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