* Check if stem ends with consonant-vowel-consonant pattern * where the final consonant is not w, x, or y
(stem: string)
| 68 | * where the final consonant is not w, x, or y |
| 69 | */ |
| 70 | function endsWithCVC(stem: string): boolean { |
| 71 | return cvc.test(stem); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Step 1a: Handle plural forms and -ed/-ing endings |