(data: string, p: string)
| 33 | } |
| 34 | |
| 35 | function writeFile(data: string, p: string): void { |
| 36 | fs.writeFileSync(p, data, { encoding: "utf-8" }); |
| 37 | } |
| 38 | |
| 39 | function readJson(p: string): any { |
| 40 | const data = fs.readFileSync(p, { encoding: "utf-8" }); |
no outgoing calls
no test coverage detected