utftables
v1.0.3
Published
Tiny utility module for outputting barebones table-formatted arrays for CLI tools with no dependencies.
Downloads
15
Maintainers
Readme
tiny table tool
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);