1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 08:15:29 +00:00
notes/node_modules/text-table/example/doubledot.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

12 lines
206 B
JavaScript

var table = require('../');
var t = table([
[ '0.1.2' ],
[ '11.22.33' ],
[ '5.6.7' ],
[ '1.22222' ],
[ '12345.' ],
[ '5555.' ],
[ '123' ]
], { align: [ '.' ] });
console.log(t);