W72crm_web-master/node_modules/callsites/index.js

9 lines
233 B
JavaScript
Raw Permalink Normal View History

2025-05-27 11:25:53 +08:00
'use strict';
module.exports = function () {
var _ = Error.prepareStackTrace;
Error.prepareStackTrace = function (_, stack) { return stack };
var stack = new Error().stack.slice(1);
Error.prepareStackTrace = _;
return stack;
};