FLUJOS/BACK_BACK/node_modules/callsites/index.js
2025-11-07 00:06:12 +01:00

8 lines
214 B
JavaScript
Executable file

'use strict';
module.exports = () => {
const _ = Error.prepareStackTrace;
Error.prepareStackTrace = (_, stack) => stack;
const stack = new Error().stack.slice(1);
Error.prepareStackTrace = _;
return stack;
};