keyword-extractor
Version:
Module for creating a keyword array from a string and excluding stop words.
22 lines (21 loc) • 629 B
JavaScript
module.exports = {
ar: require("./ar").stopwords,
cs: require("./cs").stopwords,
da: require("./da").stopwords,
de: require("./de").stopwords,
en: require("./en").stopwords,
es: require("./es").stopwords,
fa: require("./fa").stopwords,
fr: require("./fr").stopwords,
gl: require("./gl").stopwords,
it: require("./it").stopwords,
ko: require("./ko").stopwords,
nl: require("./nl").stopwords,
pl: require("./pl").stopwords,
pt: require("./pt").stopwords,
ro: require("./ro").stopwords,
ru: require("./ru").stopwords,
sv: require("./sv").stopwords,
tr: require("./tr").stopwords,
vi: require("./vi").stopwords
};