(file: string)
| 101 | } |
| 102 | |
| 103 | function readConfigText(file: string): string { |
| 104 | if (!fs.existsSync(file)) return ''; |
| 105 | return fs.readFileSync(file, 'utf-8'); |
| 106 | } |
| 107 | |
| 108 | function parseConfig(text: string): Record<string, any> { |
| 109 | if (!text.trim()) return {}; |
no outgoing calls
no test coverage detected