-
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The letter ß (Eszett) should be normalized to ss #137
Comments
Actually your implementation is the opposite of what was expected. ß should be convert to ss and not s. You only needed to remove \u00DF from the "s" diacritics and leave the "ss" there. See different articles and discussions about it: |
@bmarotta Thanks for pointing the mistake out and all the references 😄 . Let me fix that real quick. |
Description
The letter ß should be normalized to ss and not s => https://en.wikipedia.org/wiki/%C3%9F
Expected outcome
normalizeSync("Muße") => "musse"
Actual outcome
normalizeSync("Muße") => "muse"
Versions of affected system
The text was updated successfully, but these errors were encountered: