.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / text-table / example / dotalign.js
1 var table = require('../');
2 var t = table([
3     [ 'beep', '1024' ],
4     [ 'boop', '334.212' ],
5     [ 'foo', '1006' ],
6     [ 'bar', '45.6' ],
7     [ 'baz', '123.' ]
8 ], { align: [ 'l', '.' ] });
9 console.log(t);