(env = process.env)
| 30 | } |
| 31 | |
| 32 | function getEnvClaudeSettingsFile(env = process.env) { |
| 33 | return String(env.CLAUDE_SETTINGS_FILE || env.EVOMAP_CLAUDE_SETTINGS_FILE || '').trim(); |
| 34 | } |
| 35 | |
| 36 | function isValidReusableProxyToken(value) { |
| 37 | return typeof value === 'string' && REUSABLE_PROXY_TOKEN_RE.test(value.trim()); |
no outgoing calls
no test coverage detected