(path, options)
| 445 | // ==================== Stream ops ==================== |
| 446 | |
| 447 | createReadStream(path, options) { |
| 448 | const pathStr = toPathStr(path); |
| 449 | if (pathStr !== null) { |
| 450 | const r = findVFSForPath(pathStr); |
| 451 | if (r !== null) return r.vfs.createReadStream(r.normalized, options); |
| 452 | } |
| 453 | return undefined; |
| 454 | }, |
| 455 | createWriteStream(path, options) { |
| 456 | const pathStr = toPathStr(path); |
| 457 | if (pathStr !== null) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…