# equalsish

> Compare strings ignoring case, punctuation, diacritics, etc.

Latest version **2.1.1** (published 2019-03-10) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install equalsish
pnpm add equalsish
yarn add equalsish
bun add equalsish
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: no vulnerabilities; high maintenance score.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 2.1.1 |
| Published | 2019-03-10 |
| First published | 2015-08-12 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 12.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Darshak Parikh |
| Maintainers | dar5hak |
| Keywords | string, compare, natural, ignore, case, diacritic, diacritics, punctuation |

## Links

- npm: https://www.npmjs.com/package/equalsish
- Repository: https://github.com/dar5hak/equalsish
- Homepage: https://github.com/dar5hak/equalsish#readme
- Issues: https://github.com/dar5hak/equalsish/issues
- npm.io page: https://npm.io/package/equalsish

## Dependencies (1)

- [naked-string](https://npm.io/package/naked-string.md) ^1.1.1

## Alternatives

- [@mce/gif](https://npm.io/package/@mce/gif.md) — 2.6K weekly downloads
- [cleanse](https://npm.io/package/cleanse.md) — 173 weekly downloads
- [str](https://npm.io/package/str.md) — 127 weekly downloads
- [naming](https://npm.io/package/naming.md) — 95 weekly downloads
- [tap-telco-api](https://npm.io/package/tap-telco-api.md) — 19 weekly downloads

## Recent versions

- 2.1.1 (latest) — 2019-03-10
- 2.1.0 — 2016-03-17
- 2.0.3 — 2016-01-21
- 2.0.2 — 2015-12-23
- 2.0.1 — 2015-12-22
- 2.0.0 — 2015-12-22
- 1.0.0 — 2015-08-12

## README

# equalsish
> Compare strings ignoring case, punctuation, diacritics, etc.

[![Travis (.org)](https://img.shields.io/travis/dar5hak/equalsish.svg?style=flat-square)](https://travis-ci.org/dar5hak/equalsish)
[![npm](https://img.shields.io/npm/v/equalsish.svg?style=flat-square)](https://www.npmjs.com/package/equalsish)
[![license](https://img.shields.io/npm/l/equalsish.svg?style=flat-square)](https://www.apache.org/licenses/LICENSE-2.0)

## Install

```sh
$ npm install --save equalsish
```

## Usage

```js
const equalsish = require('equalsish');

console.log(equalsish('Node.js', 'nodejs')); // => true
console.log(equalsish('Pokémon FireRed', 'pokemon_fire-red')); // => true

/* Currying */
const likeJS = equalsish('JavaScript');
console.log(likeJS('java script')); // => true;
```

## License

Apache-2.0 © [Darshak Parikh](https://github.com/dar5hak)

---
_Source: https://npm.io/package/equalsish · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
