MCPcopy Index your code
hub / github.com/nodejs/node / symlink

Method symlink

lib/internal/vfs/provider.js:544–549  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 15

make_bin_overrideFunction · 0.45
configure.pyFile · 0.45
try_symlinkFunction · 0.45
_RelinkMethod · 0.45
symlinkFunction · 0.45
symlinkSyncFunction · 0.45
symlinkFunction · 0.45
symlinkFunction · 0.45
symlinkFunction · 0.45
testAsyncFunction · 0.45

Calls 1

createEROFSFunction · 0.85

Tested by

no test coverage detected