mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 15:05:28 +02:00
10 lines
160 B
Go
10 lines
160 B
Go
package fields
|
|
|
|
import "strings"
|
|
|
|
type NormalizedName string
|
|
|
|
func CreateNormalizedName(s string) NormalizedName {
|
|
return NormalizedName(strings.ToLower(s))
|
|
}
|