(method: string)
| 242 | ) |
| 243 | |
| 244 | const nodeWriteFactory = (method: string) => |
| 245 | effectify( |
| 246 | NFS.write, |
| 247 | handleErrnoException("FileSystem", method), |
| 248 | handleBadArgument(method) |
| 249 | ) |
| 250 | const nodeWrite = nodeWriteFactory("write") |
| 251 | const nodeWriteAll = nodeWriteFactory("writeAll") |
| 252 |
no test coverage detected