()
| 8 | let cachedStdinOverride: ReadStream | undefined | null = null |
| 9 | |
| 10 | function isStdinOverrideDisabled(): boolean { |
| 11 | return isEnvTruthy( |
| 12 | process.env.NCODE_DISABLE_STDIN_TTY_OVERRIDE ?? |
| 13 | process.env.CLAUDE_CODE_DISABLE_STDIN_TTY_OVERRIDE, |
| 14 | ) |
| 15 | } |
| 16 | |
| 17 | export function resetRenderOptionsForTesting(): void { |
| 18 | cachedStdinOverride = null |
no test coverage detected