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

Function _errnoException

lib/util.js:461–471  ·  view source on GitHub ↗
(...args)

Source from the content-addressed store, hash-verified

459}
460
461function _errnoException(...args) {
462 if (isErrorStackTraceLimitWritable()) {
463 const limit = Error.stackTraceLimit;
464 Error.stackTraceLimit = 0;
465 const e = new ErrnoException(...args);
466 Error.stackTraceLimit = limit;
467 ErrorCaptureStackTrace(e, _errnoException);
468 return e;
469 }
470 return new ErrnoException(...args);
471}
472
473function _exceptionWithHostPort(...args) {
474 if (isErrorStackTraceLimitWritable()) {

Callers 2

test-uv-errno.jsFile · 0.85
test-uv-errmap.jsFile · 0.85

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…