source: frontend/node_modules/relateurl/lib/util/devlog.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 297 bytes
Line 
1"use strict";
2
3var inspect = require("util").inspect;
4
5
6
7function log(data)
8{
9 console.log( inspect(data, {depth:null, colors:true}) );
10}
11
12
13
14function logAll(data)
15{
16 console.log( inspect(data, {depth:null, showHidden:true, colors:true}) );
17}
18
19
20
21module.exports =
22{
23 log: log,
24 logAll: logAll
25};
Note: See TracBrowser for help on using the repository browser.