Return value if nonempty, def otherwise.
(value, def string)
| 59 | |
| 60 | // Return value if nonempty, def otherwise. |
| 61 | func valueOrDefault(value, def string) string { |
| 62 | if value != "" { |
| 63 | return value |
| 64 | } |
| 65 | return def |
| 66 | } |
| 67 | |
| 68 | // outgoingLength reports the Content-Length of this outgoing (Client) request. |
| 69 | // It maps 0 into -1 (unknown) when the Body is non-nil. |
no outgoing calls
no test coverage detected
searching dependent graphs…