mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
8 lines
214 B
JavaScript
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;
|
|
};
|