(title, status string)
| 26 | } |
| 27 | |
| 28 | func (f *ASCIIFormatter) applyTitle(title, status string) string { |
| 29 | if f != nil && f.FormatTitle != nil { |
| 30 | return f.FormatTitle(title, status) |
| 31 | } |
| 32 | return title |
| 33 | } |
| 34 | |
| 35 | func (f *ASCIIFormatter) applyStatusIndicator(indicator, status string) string { |
| 36 | if f != nil && f.FormatStatusIndicator != nil { |