* Reads the target of a symbolic link. * @param {string} path The symlink path * @param {object} [options] Options * @returns {Promise }
(path, options)
| 521 | * @returns {Promise<string>} |
| 522 | */ |
| 523 | async readlink(path, options) { |
| 524 | throw new ERR_METHOD_NOT_IMPLEMENTED('readlink'); |
| 525 | } |
| 526 | |
| 527 | /** |
| 528 | * Reads the target of a symbolic link synchronously. |
no outgoing calls
no test coverage detected