(fd)
| 42 | |
| 43 | const noopFdPromise = PromiseResolve(true); |
| 44 | function noopFd(fd) { |
| 45 | if (getVirtualFd(fd)) return noopFdPromise; |
| 46 | return undefined; |
| 47 | } |
| 48 | |
| 49 | // Registry of active VFS instances. |
| 50 | const activeVFSList = []; |
nothing calls this directly
no test coverage detected
searching dependent graphs…