UNPKG

mongoose

Version:

Mongoose MongoDB ORM

26 lines (18 loc) 510 B
/** * 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());