(path: string)
| 35 | } |
| 36 | |
| 37 | export async function removeFile(path: string) { |
| 38 | await fsModule.unlink(path); |
| 39 | } |
| 40 | |
| 41 | export async function readFile(path: string) { |
| 42 | return await fsModule.readFile(path, "utf8"); |
no outgoing calls
no test coverage detected
searching dependent graphs…