* Reads the target of a symbolic link synchronously. * @param {string} path The symlink path * @param {object} [options] Options * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass
(path, options)
| 531 | * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass |
| 532 | */ |
| 533 | readlinkSync(path, options) { |
| 534 | throw new ERR_METHOD_NOT_IMPLEMENTED('readlinkSync'); |
| 535 | } |
| 536 | |
| 537 | /** |
| 538 | * Creates a symbolic link. |
no outgoing calls
no test coverage detected