* Creates a symbolic link. * @param {string} target The symlink target * @param {string} path The symlink path * @param {string} [type] The symlink type (file, dir, junction) * @returns {Promise }
(target, path, type)
| 542 | * @returns {Promise<void>} |
| 543 | */ |
| 544 | async symlink(target, path, type) { |
| 545 | if (this.readonly) { |
| 546 | throw createEROFS('symlink', path); |
| 547 | } |
| 548 | throw new ERR_METHOD_NOT_IMPLEMENTED('symlink'); |
| 549 | } |
| 550 | |
| 551 | /** |
| 552 | * Creates a symbolic link synchronously. |
no test coverage detected