(homeDir?: string | undefined)
| 3 | import { join } from 'pathe'; |
| 4 | |
| 5 | export function resolveKimiHome(homeDir?: string | undefined): string { |
| 6 | return homeDir ?? process.env['KIMI_CODE_HOME'] ?? join(homedir(), '.kimi-code'); |
| 7 | } |
| 8 | |
| 9 | export function resolveConfigPath(input: { |
| 10 | readonly homeDir?: string | undefined; |
no outgoing calls
no test coverage detected