(s string)
| 66 | } |
| 67 | |
| 68 | func Yellow(s string) string { |
| 69 | if !IsColorEnabled { |
| 70 | return s |
| 71 | } |
| 72 | return yellow(s) |
| 73 | } |
| 74 | |
| 75 | func Yellowf(s string, args ...interface{}) string { |
| 76 | return Yellow(fmt.Sprintf(s, args...)) |
no outgoing calls
no test coverage detected