aboutsummaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/text-table/example/center.js
blob: 52b1c69e012cb145554aebd2981a18715716dbff (plain)
1
2
3
4
5
6
7
8
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);