()
| 37 | import { isInternalBuild } from 'src/capabilities/static.js' |
| 38 | |
| 39 | export function isFastModeEnabled(): boolean { |
| 40 | return !isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_FAST_MODE) |
| 41 | } |
| 42 | |
| 43 | export function isFastModeAvailable(): boolean { |
| 44 | if (!isFastModeEnabled()) { |
no test coverage detected