npm install pruddy-error``prettify-error
This is a clone of the module which was unpublished by the`
author. All dependencies have been inlined to prevent future conflicts.
Prettify given error objects for console outputs

``
$ npm install pruddy-error
`js
var pruddy = require('pruddy-error');
var error = new Error('lorem ipsum');
console.error(pruddy(error) || error);
`
If you'd like to skip some lines from the stack:
`js``
pruddy(error, {
shift: 2 // Will start reading the stack from the third line.
})