aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/callsite/index.js
blob: d3ee6f8cf382e17e1f19c833bdb26c34fc382012 (plain)
1
2
3
4
5
6
7
8
9
10
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;
};