mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-03 20:10:38 +08:00
9 lines
214 B
JavaScript
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;
|
|
};
|