----- helpers -----
(width int)
| 263 | // ----- helpers ----- |
| 264 | |
| 265 | func printSep(width int) { |
| 266 | fmt.Println(strings.Repeat("─", width)) |
| 267 | } |
| 268 | |
| 269 | func shortAgent(ua string, max int) string { |
| 270 | if len(ua) > max { |
no outgoing calls
no test coverage detected