(value: string | undefined)
| 77 | } |
| 78 | |
| 79 | function parseBoolean(value: string | undefined): boolean { |
| 80 | return ["1", "true", "yes", "on"].includes(value?.toLowerCase() ?? ""); |
| 81 | } |
| 82 | |
| 83 | function parseToolMode(env: NodeJS.ProcessEnv): ToolMode { |
| 84 | const mode = env.DEVSPACE_TOOL_MODE; |
no outgoing calls
no test coverage detected