UNPKG

wink-porter2-stemmer

Version:

Implementation of Porter Stemmer Algorithm V2 by Dr Martin F Porter

12 lines (8 loc) 233 B
/* eslint no-console: 0 */ // Load porter stemmer V2 var stem = require( 'wink-porter2-stemmer' ); console.log( stem( 'properly' ) ); // -> proper console.log( stem( 'borrowed' ) ); // -> borrow console.log( stem( 'stemming' ) );