time-to-botec/squiggle/node_modules/@stdlib/nlp/porter-stemmer/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

29 lines
415 B
Plaintext

{{alias}}( word )
Extracts the stem of a given word.
Parameters
----------
word: string
Input word.
Returns
-------
out: string
Word stem.
Examples
--------
> var out = {{alias}}( 'walking' )
'walk'
> out = {{alias}}( 'walked' )
'walk'
> out = {{alias}}( 'walks' )
'walk'
> out = {{alias}}( '' )
''
See Also
--------