Skip to content
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 sorting strategy "alphabetical" should use localeCompare() #2684

Closed
kozi opened this issue Aug 21, 2024 · 1 comment
Closed

The sorting strategy "alphabetical" should use localeCompare() #2684

kozi opened this issue Aug 21, 2024 · 1 comment
Milestone

Comments

@kozi
Copy link

kozi commented Aug 21, 2024

The sorting strategy "alphabetical" should use localeCompare()

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare

return a.name < b.name;

return a.name < b.name;

a.name.localeCompare(b.name)
@Gerrit0
Copy link
Collaborator

Gerrit0 commented Aug 21, 2024

PR welcome

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants