()
| 81 | type Term256 int |
| 82 | |
| 83 | func (t Term256) Escape() string { |
| 84 | if fcolor.NoColor { |
| 85 | return "" |
| 86 | } |
| 87 | return fmt.Sprintf("\x1b[38;5;%dm", t) |
| 88 | } |
| 89 | |
| 90 | func (t Term256) Unescape() string { |
| 91 | if fcolor.NoColor { |
no outgoing calls
no test coverage detected