(path, options)
| 558 | } |
| 559 | |
| 560 | lstatSync(path, options) { |
| 561 | const entry = this.#getEntry(path, 'lstat', false); |
| 562 | return this.#createStats(entry, undefined, options?.bigint); |
| 563 | } |
| 564 | |
| 565 | async lstat(path, options) { |
| 566 | return this.lstatSync(path, options); |
no test coverage detected