Hello maintainers, I'm wondering it since I saw [these functions](https://github.com/purescript-node/purescript-node-process/blob/a3894cf078bc8e4049c3decdf1d4f7f057a4139c/src/Node/Process.purs#L154-L164), there already are `stdoutIsTTY ` and `stderrIsTTY` but lacking `stdinIsTTY`. I'm avoiding this lacking by defining my own one only for now: ```purs stdinIsTTY :: Boolean stdinIsTTY = (unsafeCoerce stdin).isTTY ``` and this seems working properly like this: ```purs main :: Effect Unit main = logShow stdinIsTTY ``` ```sh ❯ spago run [info] Build succeeded. true ❯ echo hi | spago run [info] Build succeeded. false ```