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

trie-search

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trie-search - npm Package Compare versions

Comparing version 1.2.11 to 1.3.4

test/trie-search.test.js

7

package.json

@@ -6,3 +6,3 @@ {

"description": "A trie implementation that maps keys to objects for rapid retrieval by phrases. Most common use will be for typeahead searches.",
"version": "1.2.11",
"version": "1.3.4",
"main": "index.js",

@@ -13,3 +13,3 @@ "url": "https://github.com/joshjung/trie-search",

"scripts": {
"test": "mocha",
"test": "jest",
"release:major": "npm version major && git push --follow-tags && npm publish",

@@ -42,3 +42,6 @@ "release:minor": "npm version minor && git push --follow-tags && npm publish",

"hasharray": "^1.1.1"
},
"devDependencies": {
"jest": "^26.4.2"
}
}

@@ -88,3 +88,2 @@ var HashArray = require('hasharray');

val = val.toString();
val = this.options.ignoreCase ? val.toLowerCase() : val;

@@ -91,0 +90,0 @@ var expandedValues = this.expandString(val);

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