package normalize import ( "strings" ) func Name(name string) string { name = strings.TrimSpace(name) return strings.ToLower(name) }