stopword
Version:
A module for node.js and the browser that takes in text and returns text that is stripped of stopwords. Has pre-defined stopword lists for 62 languages and also takes lists with custom stopwords as input.
41 lines (39 loc) • 444 B
JavaScript
// Copyright (c) 2017 Peter Graham, contributors. Released under the Apache-2.0 license.
const est = [
'aga',
'ei',
'et',
'ja',
'jah',
'kas',
'kui',
'kõik',
'ma',
'me',
'mida',
'midagi',
'mind',
'minu',
'mis',
'mu',
'mul',
'mulle',
'nad',
'nii',
'oled',
'olen',
'oli',
'oma',
'on',
'pole',
'sa',
'seda',
'see',
'selle',
'siin',
'siis',
'ta',
'te',
'ära'
]
export { est }