2021-03-01 15:06:11 +08:00

20 lines
360 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# node-diacritics
remove diacritics from strings
useful when implementing some kind of search or filter functionality.
## Installation
```
$ npm install diacritics
```
## API
```js
var removeDiacritics = require('diacritics').remove;
console.log(removeDiacritics("Iлèåïɑíƶï߀ԉ"));
// prints "Internationalizati0n"
```