Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.57 KB

README.md

File metadata and controls

49 lines (30 loc) · 1.57 KB

es-simplify

Simplifies an english search term to use it with an Elasticsearch completion index.

npm version Codeship Status for stevejay/es-simplify Coverage Status bitHound Overall Score bitHound Dependencies bitHound Dev Dependencies license

NPM

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