Package Exports
- pretty-print
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pretty-print) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pretty-print
Print formatted data to the the command line.
Install
npm install pretty-print --saveUsage
####Object
var prettyPrint = require('pretty-print');
prettyPrint.object({
key: 'value'
longerKey: 'value'
});
// outputs:
//
// key: value
// longerKey: valueArray
var prettyPrint = require('pretty-print');
pretttyPrint.array([
{
name: 'guy',
height: 'short',
},
{
name: 'girl',
height: 'short'
}
], 'name', 'height');
// outputs:
//
// guy: short
// girl: short