Skip to content

Instantly share code, notes, and snippets.

@cardoni
Created February 17, 2015 21:20
Show Gist options
  • Save cardoni/c3a8cfbe4156a613512e to your computer and use it in GitHub Desktop.
Save cardoni/c3a8cfbe4156a613512e to your computer and use it in GitHub Desktop.
wordpos module examples (https://github.com/moos/wordpos)
wordpos.getPOS( 'The angry bear chased the frightened little squirrel.', console.log );
// Output:
{
nouns: [ 'bear', 'squirrel', 'little', 'chased' ],
verbs: [ 'bear' ],
adjectives: [ 'little', 'angry', 'frightened' ],
adverbs: [ 'little' ],
rest: [ 'the' ]
}
@cardoni
Copy link
Author

cardoni commented Mar 3, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment