Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@purnomo_eko/remove-stop-words

purnomoeko12MIT0.0.4

Remove stop words from search query

stop-words, english, search-query

readme

Remove-stop-words

Remove stop words from search query to improve search query result.

How to use it?

The stop words stored in array, and it will remove every words that listed in those array:

const removeStopWords = require('@purnomo_eko/remove-stop-words');

removeStopWords('I want to have relationship with different religion', 'en');

// result will be [ 'relationship', 'different', 'religion' ]

Available language

Now we only support english, any addition will be welcome.