Skip to content

Instantly share code, notes, and snippets.

@sixertoy
Created August 30, 2014 20:10
Show Gist options
  • Save sixertoy/eb40ca4cd17bcb45e33e to your computer and use it in GitHub Desktop.
Save sixertoy/eb40ca4cd17bcb45e33e to your computer and use it in GitHub Desktop.
console-stacktrace
function __getErrorObject(){
var obj = {};
var err = (new Error).stack.split("\n");
err = err.splice(1);
// [0].match(/:([0-9]+):/)[1];
return err;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment