1
0
mirror of https://github.com/stCarolas/setup-maven.git synced 2025-03-20 08:35:34 +00:00
setup-maven/node_modules/callsites/index.js
2020-02-03 13:46:22 +03:00

9 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;
};