creates error object from enumerable and non-enumerable properties of error objects
npm install objectify-errorobjectify-error
===============
Creates enumerable error object from enumerable and non-enumerable properties of ordinary error objects.
``
var objerr = require('objectify-error');
var e = new Error('error message');
Object.keys(e); // returns []
Object.keys(objerr(e)); // returns [ 'stack', 'arguments', 'type', 'message' ]
`
```
npm install
npm test