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