` const sentence = new Sentence({ text: 'tell me more', language: 'en' });` results in `typeError: cannot read property 'findWord' of undefined' This is because the language is `En`. The language should be case-insensitive
const sentence = new Sentence({ text: 'tell me more', language: 'en' });results in
`typeError: cannot read property 'findWord' of undefined'
This is because the language is
En. The language should be case-insensitive