(method: string)
| 217 | |
| 218 | const makeFile = (() => { |
| 219 | const nodeReadFactory = (method: string) => |
| 220 | effectify( |
| 221 | NFS.read, |
| 222 | handleErrnoException("FileSystem", method), |
| 223 | handleBadArgument(method) |
| 224 | ) |
| 225 | const nodeRead = nodeReadFactory("read") |
| 226 | const nodeReadAlloc = nodeReadFactory("readAlloc") |
| 227 | const nodeStat = effectify( |
no test coverage detected