Got it to work in the console and started trying random words, and I'm getting the wrong results. ``` checker = require('spellchecker') checker.isMisspelled('helo') > false checker.isMisspelled('hel') > false checker.isMisspelled('hello') > false checker.isMisspelled('helasdfasdf') > true ``` Cheking the en_US.dict file I can see those words don't exist, but both `hel` and `helo` are suffixes for words that do exist in the dictionary.
Got it to work in the console and started trying random words, and I'm getting the wrong results.
Cheking the en_US.dict file I can see those words don't exist, but both
helandheloare suffixes for words that do exist in the dictionary.