()
| 158 | } |
| 159 | |
| 160 | func (p *Printer) dataOut() io.Writer { |
| 161 | if p.dataOutOverride != nil { |
| 162 | return p.dataOutOverride |
| 163 | } |
| 164 | return os.Stdout |
| 165 | } |
| 166 | |
| 167 | // FormatBytes converts bytes to human readable format |
| 168 | func (p *Printer) FormatBytes(bytes int64) string { |
no outgoing calls
no test coverage detected