(file: Deno.FsFile, method: string, pathOrDescriptor: string | number)
| 24 | }) |
| 25 | |
| 26 | const close = (file: Deno.FsFile, method: string, pathOrDescriptor: string | number) => |
| 27 | Effect.orDie(Effect.try({ |
| 28 | try: () => file.close(), |
| 29 | catch: handleError("FileSystem", method, pathOrDescriptor) |
| 30 | })) |
| 31 | |
| 32 | const collectAsyncIterable = <A>( |
| 33 | method: string, |
no test coverage detected