(cwd: string)
| 79 | } |
| 80 | |
| 81 | function getConfigPath(cwd: string): string { |
| 82 | return path.join(getConfigDir(cwd), CONFIG_FILE); |
| 83 | } |
| 84 | |
| 85 | function isPlainObject(value: unknown): value is Record<string, unknown> { |
| 86 | return typeof value === 'object' && value !== null && !Array.isArray(value); |
no test coverage detected