Check if STDERR is interactive
There seems to be no way to check if STDERR is interactive, only STDIN and STDOUT.
That's true. The reason it's not in the TerminalInfo now is that not every environment has a stderr. But given that all the Terminal.print functions take a stderr argument now, I think it makes sense to add that.
We have to decide what to do for environments (like the browser) that don't have stderr, though. Make errInteractive a Boolean?? If we make it non-nullable, what should it's value default to if stderr doesn't exist?
We have to decide what to do for environments (like the browser) that don't have stderr, though. Make
errInteractiveaBoolean?? If we make it non-nullable, what should it's value default to if stderr doesn't exist?
Boolean? would make sense I think.