(file: string, text: string)
| 87 | |
| 88 | const read = (file: string) => Effect.promise(() => fs.readFile(file, "utf-8")) |
| 89 | const write = (file: string, text: string) => Effect.promise(() => fs.writeFile(file, text)) |
| 90 | |
| 91 | const tokens = { |
| 92 | input: 0, |
no outgoing calls
no test coverage detected