setup-node/node_modules/callsites/index.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -05:00

8 lines
214 B
JavaScript

'use strict';
module.exports = () => {
const _ = Error.prepareStackTrace;
Error.prepareStackTrace = (_, stack) => stack;
const stack = new Error().stack.slice(1);
Error.prepareStackTrace = _;
return stack;
};