normalize replaces underscores with hyphens
(s string)
| 303 | |
| 304 | // normalize replaces underscores with hyphens |
| 305 | func normalize(s string) string { |
| 306 | return strings.ReplaceAll(s, "_", "-") |
| 307 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…