1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 11:05:22 +00:00
notes/node_modules/text-table/example/center.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -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);