maybestack
v2.0.0
Published
maybestack(err) - return stack of error or just return the error object
Downloads
3
Readme
maybestack
Returns error stack of an object if it exists.
import maybestack from 'maybestack'
const a = {a: 'ok'}
const b = new Error('stuff')
maybestack(a) // {a: 'ok'}
maybestack(b) /*
Error: stuff
at Error (native)
*/