(s string)
| 188 | } |
| 189 | |
| 190 | func getNormalizedString(s string) string { |
| 191 | noSpace := strings.Replace(s, " ", "", -1) |
| 192 | noNewLine := strings.Replace(noSpace, "\n", "", -1) |
| 193 | |
| 194 | return strings.TrimSpace(noNewLine) |
| 195 | } |
no outgoing calls
no test coverage detected