(path: string)
| 5 | } |
| 6 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 7 | export async function readJSONFileContents(path: string): Promise<any> { |
| 8 | return JSON.parse(await readFileContents(path)); |
| 9 | } |
| 10 | |
| 11 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 12 | export async function readJSONFileContentsIfExists(path: string): Promise<any> { |
no test coverage detected
searching dependent graphs…