(fd, options)
| 366 | return undefined; |
| 367 | }, |
| 368 | fstatSync(fd, options) { |
| 369 | const vfd = getVirtualFd(fd); |
| 370 | if (vfd) return vfd.entry.statSync(options); |
| 371 | return undefined; |
| 372 | }, |
| 373 | ftruncateSync(fd, len) { |
| 374 | const vfd = getVirtualFd(fd); |
| 375 | if (vfd) { vfd.entry.truncateSync(len); return true; } |
nothing calls this directly
no test coverage detected
searching dependent graphs…