(output []byte)
| 978 | } |
| 979 | |
| 980 | func outputLines(output []byte) []string { |
| 981 | lines := strings.TrimSuffix(string(output), "\n") |
| 982 | return strings.Split(lines, "\n") |
| 983 | } |
| 984 | |
| 985 | func firstLine(output []byte) string { |
| 986 | if i := bytes.IndexAny(output, "\n"); i >= 0 { |
no outgoing calls
no test coverage detected