log.js 297 B

12345678910
  1. var chalk = require('chalk');
  2. var dateformat = require('dateformat');
  3. module.exports = function(){
  4. var time = '['+chalk.grey(dateformat(new Date(), 'HH:MM:ss'))+']';
  5. var args = Array.prototype.slice.call(arguments);
  6. args.unshift(time);
  7. console.log.apply(console, args);
  8. return this;
  9. };