UNPKG

porter2

Version:

Fastest JavaScript implementation of the porter2 stemmer

10 lines (9 loc) 182 B
/** * Porter2 English stemmer. Works on lowercase words only. * * @example * ``` * stem('animadversion') //=> 'animadvers' * ``` */ export function stem(word: string): string