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

Function _exceptionWithHostPort

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

Source from the content-addressed store, hash-verified

471}
472
473function _exceptionWithHostPort(...args) {
474 if (isErrorStackTraceLimitWritable()) {
475 const limit = Error.stackTraceLimit;
476 Error.stackTraceLimit = 0;
477 const e = new ExceptionWithHostPort(...args);
478 Error.stackTraceLimit = limit;
479 ErrorCaptureStackTrace(e, _exceptionWithHostPort);
480 return e;
481 }
482 return new ExceptionWithHostPort(...args);
483}
484
485/**
486 * Parses the content of a `.env` file.

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…