()
| 89 | * — notably startKeychainPrefetch() at main.tsx top-level. |
| 90 | */ |
| 91 | export function isBareMode(): boolean { |
| 92 | return ( |
| 93 | isEnvTruthy(process.env.NCODE_SIMPLE) || |
| 94 | isEnvTruthy(process.env.CLAUDE_CODE_SIMPLE) || |
| 95 | process.argv.includes('--bare') |
| 96 | ) |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Parses an array of environment variable strings into a key-value object |
no test coverage detected