You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
284 B

7 years ago
  1. module.exports = function(){
  2. var orig = Error.prepareStackTrace;
  3. Error.prepareStackTrace = function(_, stack){ return stack; };
  4. var err = new Error;
  5. Error.captureStackTrace(err, arguments.callee);
  6. var stack = err.stack;
  7. Error.prepareStackTrace = orig;
  8. return stack;
  9. };