()
| 120 | } |
| 121 | |
| 122 | func (o out) IsTerminal() bool { |
| 123 | if f, ok := o.Writer.(*os.File); ok { |
| 124 | return isTerminal(f) |
| 125 | } |
| 126 | return false |
| 127 | } |
| 128 | |
| 129 | func (o out) Width() int { |
| 130 | if f, ok := o.Raw().(*os.File); ok { |
nothing calls this directly
no test coverage detected