GT2/GT2-iOS/node_modules/callsite/index.js
2018-02-12 17:26:06 +00:00

10 lines
284 B
JavaScript

module.exports = function(){
var orig = Error.prepareStackTrace;
Error.prepareStackTrace = function(_, stack){ return stack; };
var err = new Error;
Error.captureStackTrace(err, arguments.callee);
var stack = err.stack;
Error.prepareStackTrace = orig;
return stack;
};