UNPKG

hexo-related-posts

Version:

Hexo plugin that generates related posts list with TF/IDF algorithm

4 lines (2 loc) 161 B
const stemWords = (words, stemmers) => (words || []).map(word => stemmers.reduce((result, stemmer) => stemmer.stem(result), word)); module.exports = stemWords;