NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/relateurl/lib/util/devlog.js
2023-09-14 14:47:11 +08:00

26 lines
297 B
Java

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