github.com/gramework/gramework@v1.8.1-0.20231027140105-82555c9057f5/tolower_other.go (about) 1 //+build !go1.12 2 3 package gramework 4 5 import "strings" 6 7 func toLower(s string) string { 8 return strings.ToLower(s) 9 }