Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@ryanburnette/console-log-util-inspect

ryanburnette3ISC1.1.1

Console.log the util.inspect of an object with some defaults. Console log it all.

readme

@ryanburnette/console-log-util-inspect

npm version

Console log it all. Uses util.inspect.

var _log = require('@ryanburnette/console-log-util-inspect');
var obj = {}; // make it a big object for full effect
_log(obj);
_log(obj, { colors: false }); // pass in an options object to override defaults