(handle)
| 1579 | } |
| 1580 | |
| 1581 | async function fsync(handle) { |
| 1582 | return await PromisePrototypeThen( |
| 1583 | binding.fsync(handle.fd, kUsePromises), |
| 1584 | undefined, |
| 1585 | handleErrorFromBinding, |
| 1586 | ); |
| 1587 | } |
| 1588 | |
| 1589 | async function mkdir(path, options) { |
| 1590 | const h = vfsState.handlers; |
nothing calls this directly
no test coverage detected
searching dependent graphs…