mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-28 16:45:32 +00:00
13 lines
208 B
Go
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
|
|
}
|