Files
red_de_investigacion_front/node_modules/relateurl/lib/util/devlog.js
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06:00

26 lines
297 B
JavaScript

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