(path: string, json: any)
| 49 | } |
| 50 | |
| 51 | export async function writeJSONFile(path: string, json: any) { |
| 52 | await writeFile(path, JSON.stringify(json, null, 2)); |
| 53 | } |
| 54 | |
| 55 | export function readJSONFileSync(path: string) { |
| 56 | const fileContents = fsSync.readFileSync(path, "utf8"); |
no outgoing calls
no test coverage detected
searching dependent graphs…