UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

12 lines (11 loc) 270 B
/** * Base stemmer that does not stem. * This is exported to allow for comparing if a stemmer is the base stemmer. * * @param {string} word The word to stem. * * @returns {string} The stemmed word. */ export default function baseStemmer( word ) { return word; }