0.0.1 • Published 7 years ago

bick v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

bick

bick is a light-weight pretty print wrapper around console.log that currently implements pretty printing for functions, numbers, and objects. If you have idea for other pretty printing formats that might be useful for you during debugging, please submit an issue.

Installation

npm install --save bick

Usage

> const bick = require('./src');
undefined
> bick.log(bick.log);
log(item)
undefined
> bick.log({a: 'b', c: 'd', e: 'f', g: 'h'})
{
        "a": "b",
        "c": "d",
        "e": "f",
        "g": "h"
}
undefined
> bick.log(43424124141.12414124123)
43,424,124,141.12414
undefined

bick Demo