* Gets the real path synchronously. * @param {string} path The path * @param {object} [options] Options * @returns {string}
(path, options)
| 436 | * @returns {string} |
| 437 | */ |
| 438 | realpathSync(path, options) { |
| 439 | // Default: return the path as-is (for providers without symlinks) |
| 440 | // First verify the path exists |
| 441 | this.statSync(path); |
| 442 | return path; |
| 443 | } |
| 444 | |
| 445 | /** |
| 446 | * Checks file accessibility. |
no test coverage detected