biobulkbende.org/node_modules/callsite/index.js

11 lines
284 B
JavaScript
Raw Normal View History

2020-09-16 12:23:28 +00:00
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;
};