File: //proc/1526/root/var/www/zaklada/html/node_modules/cli-table/examples/revs.js
/**
 * Module requirements.
 */
// this line is only needed if you refuse to use npm
require.paths.unshift(__dirname + '/../support/colors');
var Table = require('../lib/cli-table');
/**
 * Example.
 */
var table = new Table({ 
    head: ['Rel', 'Change', 'By', 'When']
  , colWidths: [6, 21, 25, 17]
});
table.push(
    ['v0.1', 'Testing something cool', 'rauchg@gmail.com', '7 minutes ago']
  , ['v0.1', 'Testing something cool', 'rauchg@gmail.com', '8 minutes ago']
);
console.log(table.toString());
var table = new Table({ 
    head: ['Rel', 'Change', 'By', 'When']
  , colWidths: [6, 21, 25, 17]
  , style : {compact : true, 'padding-left' : 1}
});
table.push(
    ['v0.1', 'Testing something cool', 'rauchg@gmail.com', '7 minutes ago']
  , ['v0.1', 'Testing something cool', 'rauchg@gmail.com', '8 minutes ago']
  , []
  , ['v0.1', 'Testing something cool', 'rauchg@gmail.com', '8 minutes ago']
);
console.log(table.toString());