(handle, options = { __proto__: null, bigint: false })
| 1773 | } |
| 1774 | |
| 1775 | async function fstat(handle, options = { __proto__: null, bigint: false }) { |
| 1776 | const result = await PromisePrototypeThen( |
| 1777 | binding.fstat(handle.fd, options.bigint, kUsePromises), |
| 1778 | undefined, |
| 1779 | handleErrorFromBinding, |
| 1780 | ); |
| 1781 | return getStatsFromBinding(result); |
| 1782 | } |
| 1783 | |
| 1784 | async function lstat(path, options = { __proto__: null, bigint: false }) { |
| 1785 | const h = vfsState.handlers; |
nothing calls this directly
no test coverage detected
searching dependent graphs…