(filePath: string)
| 209 | } |
| 210 | |
| 211 | readFile(filePath: string): string { |
| 212 | return fs.readFileSync(filePath, 'utf8') |
| 213 | } |
| 214 | |
| 215 | readFileAsJsonIfExists(filePath: string): any { |
| 216 | if(!this.fileExists(filePath)) return null |
no outgoing calls
no test coverage detected