* The default Error.prepareStackTrace implementation. * @returns {string}
(error, trace)
| 165 | * @returns {string} |
| 166 | */ |
| 167 | function ErrorPrepareStackTrace(error, trace) { |
| 168 | return internalPrepareStackTrace(error, trace); |
| 169 | } |
| 170 | |
| 171 | const aggregateTwoErrors = (innerError, outerError) => { |
| 172 | if (innerError && outerError && innerError !== outerError) { |
no outgoing calls
no test coverage detected
searching dependent graphs…