(message string, textColor color.Attribute)
| 66 | } |
| 67 | |
| 68 | func ColorizeBold(message string, textColor color.Attribute) string { |
| 69 | return colorize(message, textColor, 1) |
| 70 | } |
| 71 | |
| 72 | var decolorizerRegex = regexp.MustCompile(`\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]`) |
| 73 |
no outgoing calls