(filePath: string)
| 213 | } |
| 214 | |
| 215 | readFileAsJsonIfExists(filePath: string): any { |
| 216 | if(!this.fileExists(filePath)) return null |
| 217 | return this.readFileAsJson(filePath) |
| 218 | } |
| 219 | |
| 220 | readFileAsJson(filePath: string): any { |
| 221 | let fileContent = this.readFile(filePath) |
no test coverage detected