uni-ticket-system/node_modules/licia/stackTrace.js
2023-12-05 10:11:10 +08:00

12 lines
271 B
JavaScript

exports = function() {
var orig = Error.prepareStackTrace;
Error.prepareStackTrace = function(_, stack) {
return stack;
};
var stack = new Error().stack.slice(1);
Error.prepareStackTrace = orig;
return stack;
};
module.exports = exports;