(...args)
| 471 | } |
| 472 | |
| 473 | function _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. |
nothing calls this directly
no test coverage detected
searching dependent graphs…