--- Helper Functions ---
(s string, maxLen int)
| 594 | |
| 595 | // --- Helper Functions --- |
| 596 | func limitString(s string, maxLen int) string { |
| 597 | if len(s) <= maxLen { |
| 598 | return s |
| 599 | } |
| 600 | return s[:maxLen] + "..." |
| 601 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…