(filepath: string)
| 73 | } |
| 74 | |
| 75 | const readText = (filepath: string) => Effect.promise(() => fs.readFile(filepath, "utf-8")) |
| 76 | const writeText = (filepath: string, content: string) => Effect.promise(() => fs.writeFile(filepath, content, "utf-8")) |
| 77 | const makeDir = (dir: string) => Effect.promise(() => fs.mkdir(dir, { recursive: true })) |
| 78 |
no outgoing calls
no test coverage detected