npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

shoetest

v1.2.2

Published

Powerful string matching insensitive to diacritics, special characters, symbols and case

Downloads

1,222

Readme

NPM

Shoetest.js

Powerful string matching insensitive to diacritics, special characters, symbols and case.

Installation

  npm install shoetest --save

Usage

  var shoetest = require('shoetest');

  var a = 'heļlṏ, wɵrḻɖ!';
  var b = 'Algæ Britannicæ';
  var c = 'The Crème de la Crème de la Crème!';
  
  shoetest.test('hello world', a);
  // -> true

  shoetest.test('hello world', [a, b, c]);
  // -> true

  shoetest.match('Helló (wơrLd)', a);
  // -> [ 'heļlṏ, wɵrḻɖ' ]

  shoetest.match('algae britannicae', b);
  // -> [ 'Algæ Britannicæ' ]

  shoetest.match('creme', c);
  // -> [ 'Crème', 'Crème', 'Crème' ]

  shoetest.replace('creme', '<b>$1</b>', c);
  // -> 'The <b>Crème</b> de la <b>Crème</b> de la <b>Crème</b>!'

  shoetest.replace('creme', 'Crème fraîche', [a, b, c]);
  // -> [ 'heļlṏ, wɵrḻɖ!', 'Algæ Britannicæ', 'The Crème fraîche de la Crème fraîche de la Crème fraîche!' ]

  shoetest.simplify('Ƀuffalỗ buḟḟaḻở Ḅuƒfalo ḅuffȃlỗ buffalȏ bǖffaḻồ Ƀⓤffalo buƒfalɵ');
  // -> 'Buffalo buffalo Buffalo buffalo buffalo buffalo Buffalo buffalo'
  
  shoetest.complexify('This is Mars!');
  // -> 'Thíṣ ịṥ Mârs!'

Advanced usage

  var options = {
    charCase: true,
    begin: '\\b',
    end: '\\b'
  }

  shoetest.test('creme de la creme', c, options);
  // -> false

  shoetest.test('Creme de la Creme', c, options);
  // -> true

  shoetest.test('Alg', b);
  // -> true

  shoetest.test('Alg', b, options);
  // -> false

Options

options.strict

Type: Boolean Default value: true

Match strictly diacritics. In non strict mode, other special characters can be matched such as s with $ or e with .

options.diacritics

Type: Boolean Default value: false

Match the diacritics of the query.

options.charCase

Type: Boolean Default value: false

Match the case of the query.

options.symbols

Type: Boolean Default value: false

Match the symbols of the query.

options.whitespaces

Type: Boolean Default value: false

Match the exact whitespaces of the query. For instance, by default, will allow a tabulation instead of a space.

options.boundaries

Type: Boolean Default value: true

Match the word boundaries of the query.

options.begin

Type: String Default value: ``

Add custom regular expression at the beginning of the query. Escape when necessary, e.g. \\b instead of \b.

options.end

Type: String Default value: ``

Add custom regular expression at the end of the query. Escape when necessary, e.g. \\b instead of \b.

Tests

   npm test

Contributing

Pull requests are welcome. If you add functionality, then please add unit tests to cover it.

If you wish to update the reference list, only add special characters translated to 3 or less basic latin characters.