Bold returns a string formatted in bold
(a ...interface{})
| 24 | |
| 25 | // Bold returns a string formatted in bold |
| 26 | func Bold(a ...interface{}) string { |
| 27 | return _bold(a...) |
| 28 | } |
| 29 | |
| 30 | // BoolColor converts a boolean into a colored string (green: true, red: false) |
| 31 | func BoolColor(b bool) string { |
no outgoing calls
no test coverage detected