(s string)
| 22 | ) |
| 23 | |
| 24 | func Blue(s string) string { |
| 25 | if !IsColorEnabled { |
| 26 | return s |
| 27 | } |
| 28 | return blue(s) |
| 29 | } |
| 30 | |
| 31 | func Bluef(s string, args ...interface{}) string { |
| 32 | return Blue(fmt.Sprintf(s, args...)) |
no outgoing calls
no test coverage detected