DumbDown
NAME
Acme::Skynet::DumbDown
DESCRIPTION
Acme::Skynet::DumbDown converts a word or sentence into an easier to understand format. It remove plurals and attempts to identify the root of a word.
Examples
use Acme::Skynet::DumbDown;
# Single world
say dumber('cats'); # => cat
# Sentence
say dumber('he eats cats'); # => 'he eat cat'
# Decontract
say extraDumber("what's up") # => 'what is up'
ACKNOWLEDGEMENTS
Acme::Skynet::DumbDown is currently a wrapper around Lingua::EN::Stem::Porter adding support for sentences.