(t string)
| 105 | } |
| 106 | |
| 107 | func (c *ColorScheme) Yellow(t string) string { |
| 108 | if !c.Enabled { |
| 109 | return t |
| 110 | } |
| 111 | return yellow(t) |
| 112 | } |
| 113 | |
| 114 | func (c *ColorScheme) Yellowf(t string, args ...interface{}) string { |
| 115 | return c.Yellow(fmt.Sprintf(t, args...)) |
no outgoing calls
no test coverage detected