(path: string, options?: ReadFileOptions)
| 33 | * @param options Options for reading the file. |
| 34 | */ |
| 35 | export function readJsonFileSync(path: string, options?: ReadFileOptions): any { |
| 36 | return JSON.parse(fs.readFileSync(path, options) as string); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Remove the file extension of a filename |
no test coverage detected