FLUJOS/BACK_BACK/node_modules/relateurl/lib/util/devlog.js
2025-11-07 00:06:12 +01:00

25 lines
297 B
JavaScript
Executable file

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