UNPKG

box-view-cli

Version:
16 lines (14 loc) 362 B
module.exports = { error: function (err) { if (typeof err === 'string') { err = { error: err }; } console.error(JSON.stringify(err, true, 2)); }, log: function (msg) { if (typeof msg === 'string') { msg = { message: msg }; } console.log(JSON.stringify(msg, true, 2)); } };