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