UNPKG

224 BJavaScriptView Raw
1'use strict';
2const util = require('util');
3
4exports = module.exports = {};
5
6exports.inspect = function(object_message) {
7 return util.inspect(object_message, {
8 compact: true,
9 depth: 5,
10 breakLength: 80
11 });
12};