(path: string)
| 72 | } |
| 73 | |
| 74 | export function readJSONFileSync(path: string) { |
| 75 | const fileContents = fsSync.readFileSync(path, "utf8"); |
| 76 | |
| 77 | return JSON.parse(fileContents); |
| 78 | } |
| 79 | |
| 80 | export function safeDeleteFileSync(path: string) { |
| 81 | try { |
no test coverage detected
searching dependent graphs…