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

Method symlinkSync

lib/internal/vfs/provider.js:557–562  ·  view source on GitHub ↗

* Creates a symbolic link synchronously. * @param {string} target The symlink target * @param {string} path The symlink path * @param {string} [type] The symlink type (file, dir, junction)

(target, path, type)

Source from the content-addressed store, hash-verified

555 * @param {string} [type] The symlink type (file, dir, junction)
556 */
557 symlinkSync(target, path, type) {
558 if (this.readonly) {
559 throw createEROFS('symlink', path);
560 }
561 throw new ERR_METHOD_NOT_IMPLEMENTED('symlinkSync');
562 }
563
564 // === WATCH OPERATIONS (optional, polling-based) ===
565

Callers 15

symlinkSyncFunction · 0.45
createVfsHandlersFunction · 0.45
mainFunction · 0.45
prepareTestDirectoryFunction · 0.45
mainFunction · 0.45
testFunction · 0.45

Calls 1

createEROFSFunction · 0.85

Tested by 2

testFunction · 0.36
testFunction · 0.36