Files
fitness_walk_nwnu/node_modules/licia/stackTrace.js
T
2026-09-08 20:28:54 +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;