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.
51 lines (49 loc) • 642 B
JavaScript
// Copyright (c) 2017 Peter Graham, contributors. Released under the Apache-2.0 license.
const hye = [
'այդ',
'այլ',
'այն',
'այս',
'դու',
'դուք',
'եմ',
'են',
'ենք',
'ես',
'եք',
'է',
'էի',
'էին',
'էինք',
'էիր',
'էիք',
'էր',
'ըստ',
'թ',
'ի',
'ին',
'իսկ',
'իր',
'կամ',
'համար',
'հետ',
'հետո',
'մենք',
'մեջ',
'մի',
'ն',
'նա',
'նաև',
'նրա',
'նրանք',
'որ',
'որը',
'որոնք',
'որպես',
'ու',
'ում',
'պիտի',
'վրա',
'և'
]
export { hye }