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.2 to 1.2.3

2

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.2",
"version": "1.2.3",
"main": "index.js",

@@ -9,0 +9,0 @@ "url": "https://github.com/joshjung/trie-search",

@@ -7,23 +7,23 @@ var HashArray = require('hasharray');

{
regex: /[åäàáâãæ]/uig,
regex: /[åäàáâãæ]/ig,
alternate: 'a'
},
{
regex: /[èéêë]/uig,
regex: /[èéêë]/ig,
alternate: 'e'
},
{
regex: /[ìíîï]/uig,
regex: /[ìíîï]/ig,
alternate: 'i'
},
{
regex: /[òóôõö]/uig,
regex: /[òóôõö]/ig,
alternate: 'o'
},
{
regex: /[ùúûü]/uig,
regex: /[ùúûü]/ig,
alternate: 'u'
},
{
regex: /[æ]/uig,
regex: /[æ]/ig,
alternate: 'ae'

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