(maxWidth int, s string)
| 36 | } |
| 37 | |
| 38 | func Truncate(maxWidth int, s string) string { |
| 39 | return text.Truncate(maxWidth, s) |
| 40 | } |
| 41 | |
| 42 | func Pluralize(num int, thing string) string { |
| 43 | return text.Pluralize(num, thing) |
no outgoing calls
no test coverage detected