babel-preset-test-bundled-dependencies
Version:
Allow custom config for create-react-app without ejecting
26 lines (15 loc) • 297 B
JavaScript
;
var inspect = require("util").inspect;
function log(data)
{
console.log( inspect(data, {depth:null, colors:true}) );
}
function logAll(data)
{
console.log( inspect(data, {depth:null, showHidden:true, colors:true}) );
}
module.exports =
{
log: log,
logAll: logAll
};