timepiece/node_modules/relateurl/lib/util/devlog.js

26 lines
297 B
JavaScript
Raw Normal View History

2024-05-14 14:54:12 +00:00
"use strict";
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
};