String convert to code string. returns like "32;45;3".
()
| 364 | |
| 365 | // String convert to code string. returns like "32;45;3". |
| 366 | func (s Style) String() string { |
| 367 | return colors2code(s...) |
| 368 | } |
| 369 | |
| 370 | // Converts colors to code. |
| 371 | // Return format: "32;45;3". |
no test coverage detected