(t string)
| 58 | } |
| 59 | |
| 60 | func (c *ColorScheme) Bold(t string) string { |
| 61 | if !c.Enabled { |
| 62 | return t |
| 63 | } |
| 64 | return bold(t) |
| 65 | } |
| 66 | |
| 67 | func (c *ColorScheme) Boldf(t string, args ...interface{}) string { |
| 68 | return c.Bold(fmt.Sprintf(t, args...)) |
no outgoing calls
no test coverage detected