es-simplify
v1.0.6
Published
Simplifies an english search term to use it with an Elasticsearch completion index
Downloads
2
Readme
es-simplify
Simplifies an english search term to use it with an Elasticsearch completion index.
Install
$ npm install --save es-simplify
Usage
const simplify = require('es-simplify');
// simplify a term
const result = simplify(' Hi Yóu ');
// result is 'hi you'
See the unit tests for further examples.
API
simplify(term)
Returns a simplied version of the supplied string.
input
Type: string
The term you want to simplify.
License
MIT