(fd, len)
| 432 | return vfd.entry.stat(options); |
| 433 | }, |
| 434 | ftruncate(fd, len) { |
| 435 | const vfd = getVirtualFd(fd); |
| 436 | if (!vfd) return undefined; |
| 437 | return vfd.entry.truncate(len).then(() => true); |
| 438 | }, |
| 439 | fchmod: noopFd, |
| 440 | fchown: noopFd, |
| 441 | futimes: noopFd, |
nothing calls this directly
no test coverage detected
searching dependent graphs…