Files
lenz-web/helpers/functions/sorting.go
Simon Martens e19fd47c17 Init
2025-03-05 16:41:39 +01:00

13 lines
208 B
Go

package functions
import (
"golang.org/x/text/collate"
"golang.org/x/text/language"
)
func Sort(s []string) []string {
c := collate.New(language.German, collate.IgnoreCase)
c.SortStrings(s)
return s
}