1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-12 02:00:43 +00:00
notes/node_modules/text-table/example/align.js

9 lines
181 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
var table = require('../');
var t = table([
[ 'beep', '1024' ],
[ 'boop', '33450' ],
[ 'foo', '1006' ],
[ 'bar', '45' ]
], { align: [ 'l', 'r' ] });
console.log(t);