* Gets stats for a path without following symlinks. * @param {string} path The path to stat * @param {object} [options] Options * @returns {Promise }
(path, options)
| 104 | * @returns {Promise<Stats>} |
| 105 | */ |
| 106 | async lstat(path, options) { |
| 107 | // Default: same as stat (for providers that don't support symlinks) |
| 108 | return this.stat(path, options); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Gets stats for a path synchronously without following symlinks. |
no test coverage detected