Blame view

node_modules/text-table/example/table.js 140 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
  var table = require('../');
  var t = table([
      [ 'master', '0123456789abcdef' ],
      [ 'staging', 'fedcba9876543210' ]
  ]);
  console.log(t);