Files
starface-outlook-sync-addin/node_modules/relateurl/lib/util/devlog.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02: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
};