(w io.Writer, a ...any)
| 507 | } |
| 508 | |
| 509 | func fprintln(w io.Writer, a ...any) { |
| 510 | _, _ = fmt.Fprintln(w, a...) |
| 511 | } |
| 512 | |
| 513 | func fprintlnNonEmpty(w io.Writer, label, value string) { |
| 514 | if value != "" { |
no outgoing calls
no test coverage detected
searching dependent graphs…