(path: string)
| 48 | } |
| 49 | |
| 50 | export async function readJSONFile(path: string) { |
| 51 | const fileContents = await fsModule.readFile(path, "utf8"); |
| 52 | |
| 53 | return JSON.parse(fileContents); |
| 54 | } |
| 55 | |
| 56 | export async function safeFeadJSONFile(path: string) { |
| 57 | try { |
no test coverage detected
searching dependent graphs…