yoastseo
Version:
Yoast client-side content analysis
18 lines (17 loc) • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = baseStemmer;
/**
* 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.
*/
function baseStemmer(word) {
return word;
}
//# sourceMappingURL=baseStemmer.js.map