vending-machine/mobile/node_modules/licia/stackTrace.js
2026-04-03 06:07:13 +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;