(fd, len)
| 371 | return undefined; |
| 372 | }, |
| 373 | ftruncateSync(fd, len) { |
| 374 | const vfd = getVirtualFd(fd); |
| 375 | if (vfd) { vfd.entry.truncateSync(len); return true; } |
| 376 | return undefined; |
| 377 | }, |
| 378 | fchmodSync: noopFdSync, |
| 379 | fchownSync: noopFdSync, |
| 380 | futimesSync: noopFdSync, |
nothing calls this directly
no test coverage detected
searching dependent graphs…