(path, options)
| 453 | return undefined; |
| 454 | }, |
| 455 | createWriteStream(path, options) { |
| 456 | const pathStr = toPathStr(path); |
| 457 | if (pathStr !== null) { |
| 458 | const r = findVFSForPath(pathStr); |
| 459 | if (r !== null) return r.vfs.createWriteStream(r.normalized, options); |
| 460 | } |
| 461 | return undefined; |
| 462 | }, |
| 463 | |
| 464 | // ==================== Watch ops ==================== |
| 465 |
no test coverage detected
searching dependent graphs…