syllable icon indicating copy to clipboard operation
syllable copied to clipboard

Oneway is three syllables instead of 2

Open nduc opened this issue 3 years ago • 0 comments

I think it's because of

// Count multiple consonants. parts = value.split(/[^aeiouy]+/)

and ay is counted as a vowel split, so we ended up with parts [ 'o', 'e', 'ay' ]

There's no consonant before the o.

nduc avatar Jun 15 '21 07:06 nduc