* Gets stats for a path synchronously without following symlinks. * @param {string} path The path to stat * @param {object} [options] Options * @returns {Stats}
(path, options)
| 115 | * @returns {Stats} |
| 116 | */ |
| 117 | lstatSync(path, options) { |
| 118 | // Default: same as statSync (for providers that don't support symlinks) |
| 119 | return this.statSync(path, options); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Reads directory contents. |