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

accent-insensitive-search

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

accent-insensitive-search

Javascript plugin to perform an accent-insensitive-search

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-65.91%
Maintainers
1
Weekly downloads
 
Created
Source

Javascript plugin to perform an accent-insensitive-search

Installation

npm install accent-insensitive-search

Usage

import accentInsensitiveSearch from 'accent-insensitive-search';

accentInsensitiveSearch(value, searchIn);

accentInsensitiveSearch(value, searchIn) returns true if value is in searchIn (case and accent insensitive), and false else.

Options

accentInsensitiveSearch(value, searchIn, options);

options can be on the form:

{
  startWith: boolean,
  endWith: boolean,
}

The option startWith: true can be used if you only want to find strings starting with the search value. Otherwise, with the default option startWith: false you find strings containing the search value.

The option endWith: true can be used if you only want to find strings ending with the search value. Otherwise, with the default option endWith: false you find strings containing the search value.

Accent mapping

The accent mapping is defined in the file accent-map.js. This is an objet of the form { special_char: replacements }, replacements can either be a string or an array of strings.

Example: { 'é': 'e', 'ü': ['u', 'ue']}.

If you want a mapping to be added, free to you to open an issue or contribute.

FAQs

Package last updated on 25 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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