Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dotalign.js « example « text-table « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cea6299368475c9e4221fbd2b84c727b0e0e760 (plain)
1
2
3
4
5
6
7
8
9
var table = require('../');
var t = table([
    [ 'beep', '1024' ],
    [ 'boop', '334.212' ],
    [ 'foo', '1006' ],
    [ 'bar', '45.6' ],
    [ 'baz', '123.' ]
], { align: [ 'l', '.' ] });
console.log(t);