IsTerminal returns whether this stream is connected to a terminal.
()
| 43 | |
| 44 | // IsTerminal returns whether this stream is connected to a terminal. |
| 45 | func (o *Out) IsTerminal() bool { |
| 46 | return o.cs.isTerminal() |
| 47 | } |
| 48 | |
| 49 | // SetRawTerminal puts the output of the terminal connected to the stream |
| 50 | // into raw mode. |
nothing calls this directly
no test coverage detected