cool-log
Version:
simple pretty log function
23 lines (15 loc) • 524 B
Markdown
# cool-log
  [](https://github.com/myyrakle/log-pretty/blob/master/LICENSE)
##
It can be installed as follows:
```
npm install --save cool-log
```
##
And you can use it like this:
Format the value internally and print it to console.log.
```
const pr = require("cool-log");
pr("Foo");
pr({bar:1, boom:2});
```