(p: string)
| 134 | ) |
| 135 | |
| 136 | const read = async (p: string) => fs.readFile(p, 'utf8') |
| 137 | const write = async (p: string, c: string) => { |
| 138 | await fs.mkdir(path.dirname(p), { recursive: true }) |
| 139 | await fs.writeFile(p, c, 'utf8') |
no outgoing calls
no test coverage detected