(file: string)
| 113 | } |
| 114 | |
| 115 | function readText(file: string): string { |
| 116 | try { |
| 117 | return fs.readFileSync(file, 'utf-8'); |
| 118 | } catch { |
| 119 | return ''; |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | function writeHermesConfig(): WriteResult['files'][number] { |
| 124 | const file = configPath(); |
no outgoing calls
no test coverage detected