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

Function createELOOP

lib/internal/vfs/errors.js:157–165  ·  view source on GitHub ↗

* Creates an ELOOP error for too many symbolic links. * @param {string} syscall The system call name * @param {string} path The path * @returns {Error}

(syscall, path)

Source from the content-addressed store, hash-verified

155 * @returns {Error}
156 */
157function createELOOP(syscall, path) {
158 const err = new UVException({
159 errno: UV_ELOOP,
160 syscall,
161 path,
162 });
163 ErrorCaptureStackTrace(err, createELOOP);
164 return err;
165}
166
167/**
168 * Creates an EACCES error for permission denied.

Callers 2

#getEntryMethod · 0.85
realpathSyncMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected