(s string)
| 212 | } |
| 213 | |
| 214 | func processTextStr(s string) string { |
| 215 | if s == "" { |
| 216 | return "" |
| 217 | } |
| 218 | if isAllWhitespace(s) { |
| 219 | return " " |
| 220 | } |
| 221 | return strings.TrimSpace(s) |
| 222 | } |
| 223 | |
| 224 | func makePathStr(elemPath []string) string { |
| 225 | return strings.Join(elemPath, " ") |
no test coverage detected