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

12 lines
206 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
var table = require('../');
var t = table([
[ '0.1.2' ],
[ '11.22.33' ],
[ '5.6.7' ],
[ '1.22222' ],
[ '12345.' ],
[ '5555.' ],
[ '123' ]
], { align: [ '.' ] });
console.log(t);