%PDF- %PDF-
| Direktori : /proc/thread-self/root/data/old/usr/lib/node_modules/hexo/lib/plugins/helper/ |
| Current File : //proc/thread-self/root/data/old/usr/lib/node_modules/hexo/lib/plugins/helper/debug.js |
'use strict';
const { inspect } = require('util');
// this format object as string, resolves circular reference
function inspectObject(object, options) {
return inspect(object, options);
}
// wrapper to log to console
function log(...args) {
return Reflect.apply(console.log, null, args);
}
exports.inspectObject = inspectObject;
exports.log = log;