(s string)
| 157 | } |
| 158 | |
| 159 | func trimRightSpace(s string) string { |
| 160 | return strings.TrimRightFunc(s, unicode.IsSpace) |
| 161 | } |
| 162 | |
| 163 | // FIXME appendIfNotPresent is unused by cobra and should be removed in a version 2. It exists only for compatibility with users of cobra. |
| 164 |
no outgoing calls
no test coverage detected