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.
55 lines (53 loc) • 573 B
JavaScript
// Copyright (c) 2017 Peter Graham, contributors. Released under the Apache-2.0 license.
const lat = [
'a',
'ab',
'ac',
'ad',
'at',
'atque',
'aut',
'autem',
'cum',
'de',
'dum',
'e',
'erant',
'erat',
'est',
'et',
'etiam',
'ex',
'haec',
'hic',
'hoc',
'in',
'ita',
'me',
'nec',
'neque',
'non',
'per',
'qua',
'quae',
'quam',
'qui',
'quibus',
'quidem',
'quo',
'quod',
're',
'rebus',
'rem',
'res',
'sed',
'si',
'sic',
'sunt',
'tamen',
'tandem',
'te',
'ut',
'vel'
]
export { lat }