Files
npm/node_modules/text-table/example/center.js
Quim Calpe fd3017fc3e Make npm outdated output prettier.
Fixes #4176. Uses ansicolors, ansistyles, and text-table.
2013-11-26 01:03:45 -05:00

9 lines
221 B
JavaScript

var table = require('../');
var t = table([
[ 'beep', '1024', 'xyz' ],
[ 'boop', '3388450', 'tuv' ],
[ 'foo', '10106', 'qrstuv' ],
[ 'bar', '45', 'lmno' ]
], { align: [ 'l', 'c', 'l' ] });
console.log(t);