This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// get the call stack | |
Object.defineProperty ( global, '__stack', { | |
get: function () { | |
var orig = Error.prepareStackTrace; | |
Error.prepareStackTrace = function ( _, stack ) { | |
return stack; | |
}; | |
var err = new Error; | |
Error.captureStackTrace ( err, arguments.callee ); | |
var stack = err.stack; |