()
| 178 | |
| 179 | let debugRepaints: boolean | undefined |
| 180 | export function isDebugRepaintsEnabled(): boolean { |
| 181 | if (debugRepaints === undefined) { |
| 182 | debugRepaints = isEnvTruthy(process.env.CLAUDE_CODE_DEBUG_REPAINTS) |
| 183 | } |
| 184 | return debugRepaints |
| 185 | } |
| 186 | |
| 187 | export const dispatcher = new Dispatcher() |
| 188 |
no test coverage detected