JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 411
  • Score
    100M100P100Q88942F
  • License MIT

Print formatted data to the the command line

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 --save

Usage

###Object

Options

  • padding - extra padding after the object key
var print = require('pretty-print');
var options = {
  padding: 3
};

print({
  key: 'value'
  longerKey: 'value'
}, options);

// outputs
//
// key        value
// longerKey  value

Array of objects

Options

  • padding - extra padding after the object key
  • key - name of the value to use as the list key
  • value - name of value to use as the list value
var print = require('pretty-print');
var options = {
  padding: 3,
  key: 'name',
  value: 'height'
};

printy([
  {
    name: 'guy',
    height: 'short',
  },
  {
    name: 'girl',
    height: 'short'
  }
], options);

// outputs:
//
// guy:   short
// girl:  short

Array of strings or numbers

var print = require('pretty-print');

print(['val1', 'val2', 'val3']);

// outputs:
//
//  val1
//  val2
//  val3