(path, syscall, fn)
| 138 | } |
| 139 | |
| 140 | function vfsRead(path, syscall, fn) { |
| 141 | const pathStr = toPathStr(path); |
| 142 | if (pathStr === null) return undefined; |
| 143 | return findVFSWith(pathStr, syscall, fn); |
| 144 | } |
| 145 | |
| 146 | function vfsOp(path, fn) { |
| 147 | const pathStr = toPathStr(path); |
no test coverage detected
searching dependent graphs…