* Gets the real path by resolving all symlinks. * @param {string} filePath The path * @param {object} [options] Options * @returns {string}
(filePath, options)
| 378 | * @returns {string} |
| 379 | */ |
| 380 | realpathSync(filePath, options) { |
| 381 | const providerPath = this.#toProviderPath(filePath); |
| 382 | const realProviderPath = this[kProvider].realpathSync(providerPath, options); |
| 383 | return this.#toMountedPath(realProviderPath); |
| 384 | } |
| 385 | |
| 386 | /** |
| 387 | * Reads the target of a symbolic link. |
nothing calls this directly
no test coverage detected