Files
kgpz_web/functions/sorting.go
2024-12-06 13:39:26 +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
}