Axel Rauschmayer on Nostr: Article that just helped me: “Locale Aware Sorting in JavaScript” by ...
Article that just helped me: “Locale Aware Sorting in JavaScript” by npub1vz7z9fuz6stpstrm4c8285a555xhnv0aevjkps0xrspfh5zqcc3q02hmfs (npub1vz7…hmfs)
https://elijahmanor.com/byte/js-locale-sort
const collator = new Intl.Collator('en');
strings.sort((a, b) => collator.compare(a, b));
https://elijahmanor.com/byte/js-locale-sort
const collator = new Intl.Collator('en');
strings.sort((a, b) => collator.compare(a, b));