blob: f4840838e6bb6668fdce5eb63043a95a3d7b3a26 [file] [log] [blame]
'use strict';
module.exports = () => {
const _ = Error.prepareStackTrace;
Error.prepareStackTrace = (_, stack) => stack;
const stack = new Error().stack.slice(1);
Error.prepareStackTrace = _;
return stack;
};