stopwords.js 501 B

123456789101112131415
  1. module.exports = {
  2. danish: require("./da").stopwords,
  3. dutch: require("./nl").stopwords,
  4. english: require("./en").stopwords,
  5. french: require("./fr").stopwords,
  6. galician: require("./gl").stopwords,
  7. german: require("./de").stopwords,
  8. italian: require("./it").stopwords,
  9. polish: require("./pl").stopwords,
  10. portuguese: require("./pt").stopwords,
  11. romanian: require("./ro").stopwords,
  12. russian: require("./ru").stopwords,
  13. spanish: require("./es").stopwords,
  14. swedish: require("./se").stopwords
  15. };