2.0.0 • Published 2 years ago

multi-stopwords v2.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Multi-Stopwords

This is a simple module to provide stop words in a variety of languages.

How to use

Install module yarn add multi-stopwords

let stopWords = require('multi-stopwords');

// get stop words by language 
// Note use 2 letter language codes only
console.log( stopWords.en );

// to view all available languages
console.log( stopWords.langs );

// get stop words in all of these languages
console.log( stopWords.all );

// get stop words in a number of languages
// in this case, English and Swahili
// You can list as many languages as you want to return
console.log( stopWords.get('sw','en') );

Note: Stop words are returned as an array that you of lower cased words.