(path: string)
| 44 | } |
| 45 | |
| 46 | export async function readFile(path: string) { |
| 47 | return await fsModule.readFile(path, "utf8"); |
| 48 | } |
| 49 | |
| 50 | export async function readJSONFile(path: string) { |
| 51 | const fileContents = await fsModule.readFile(path, "utf8"); |
no outgoing calls
no test coverage detected
searching dependent graphs…