(s []byte)
| 460 | } |
| 461 | |
| 462 | func snippet(s []byte) string { |
| 463 | if len(s) <= 40 { |
| 464 | return fmt.Sprintf("%q", s) |
| 465 | } |
| 466 | return fmt.Sprintf("%q ... %q", s[:20], s[len(s)-20:]) |
| 467 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…