/utftables

Tiny nodejs utility module to render collections as tables using utf drawing characters. No dependencies.

Primary LanguageJavaScript

tiny table tool

table

const table = require('utftables');

let collection = [
  {name: 'foo', test: 'whatever', int: 42},
  {name: 'foo', test: 'whatever', int: 42},
  {name: 'foo', test: 'whatever', int: 42},
  {name: 'foo', test: 'whatever', int: 42}
];
table(collection);