(a, b string)
| 307 | } |
| 308 | |
| 309 | func catRegex(a, b string) string { |
| 310 | if a != "" && b != "" { |
| 311 | return a + "|" + b |
| 312 | } |
| 313 | return a + b |
| 314 | } |
| 315 | |
| 316 | // commandHelp displays help and usage information for all Commands |
| 317 | // and Variables or a specific Command or Variable. |
no outgoing calls
no test coverage detected
searching dependent graphs…