* Gets stats for a path synchronously. * @param {string} filePath The path to stat * @param {object} [options] Options * @returns {Stats}
(filePath, options)
| 236 | * @returns {Stats} |
| 237 | */ |
| 238 | statSync(filePath, options) { |
| 239 | const providerPath = this.#toProviderPath(filePath); |
| 240 | return this[kProvider].statSync(providerPath, options); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Gets stats for a path synchronously without following symlinks. |
no test coverage detected