rittenhop-dev/versions/5.94.2/node_modules/@tryghost/errors/es/wrap-stack.js
2024-09-23 19:40:12 -04:00

10 lines
246 B
JavaScript

function wrapStack(err, internalErr) {
const extraLine = (err.stack?.split(/\n/g) || [])[1];
const [firstLine, ...rest] = internalErr.stack?.split(/\n/g) || [];
return [firstLine, extraLine, ...rest].join("\n");
}
;
export {
wrapStack
};