added whole system from ola4doc

This commit is contained in:
Bachir Soussi Chiadmi
2017-12-14 17:06:06 +01:00
parent 9646c74be1
commit 0611418f7a
8725 changed files with 817688 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
'use strict';
/*
Initial code from https://github.com/gulpjs/gulp-util/blob/v3.0.6/lib/log.js
*/
var chalk = require('chalk');
var timestamp = require('time-stamp');
function getTimestamp(){
return '['+chalk.grey(timestamp('HH:mm:ss'))+']';
}
function log(){
var time = getTimestamp();
process.stdout.write(time + ' ');
console.log.apply(console, arguments);
return this;
}
function error(){
var time = getTimestamp();
process.stderr.write(time + ' ');
console.error.apply(console, arguments);
return this;
}
module.exports = log;
module.exports.error = error;