1
0
mirror of https://gitea.com/actions/setup-node.git synced 2025-07-08 17:53:53 +08:00
setup-node/node_modules/callsites/index.js
eric sciple ae5dcb46c8 .
2020-01-24 12:30:26 -05: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;
};