Files
site/nova-components/NovaLeader/node_modules/relateurl/lib/util/devlog.js
2025-04-21 16:03:20 +02:00

26 lines
297 B
JavaScript
Vendored

"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
};