hensei-web/node_modules/callsites/index.js
2020-09-11 06:44:42 -07: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;
};