-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.js
85 lines (69 loc) · 1.66 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
'use strict';
var util = require('util');
var Console = require('console').Console;
var supportsColor = require('color-support');
var console = new Console({
stdout: process.stdout,
stderr: process.stderr,
colorMode: false,
});
function hasFlag(flag) {
return process.argv.indexOf('--' + flag) !== -1;
}
function hasColors() {
if (hasFlag('no-color')) {
return false;
}
if (hasFlag('color')) {
return true;
}
if (supportsColor()) {
return true;
}
return false;
}
function Timestamp() {
this.now = new Date();
}
Timestamp.prototype[util.inspect.custom] = function (depth, opts) {
var timestamp = this.now.toLocaleTimeString('en', { hour12: false });
return '[' + opts.stylize(timestamp, 'date') + ']';
};
function getTimestamp() {
return util.inspect(new Timestamp(), { colors: hasColors() });
}
function log() {
var time = getTimestamp();
process.stdout.write(time + ' ');
console.log.apply(console, arguments);
return this;
}
function info() {
var time = getTimestamp();
process.stdout.write(time + ' ');
console.info.apply(console, arguments);
return this;
}
function dir() {
var time = getTimestamp();
process.stdout.write(time + ' ');
console.dir.apply(console, arguments);
return this;
}
function warn() {
var time = getTimestamp();
process.stderr.write(time + ' ');
console.warn.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.info = info;
module.exports.dir = dir;
module.exports.warn = warn;
module.exports.error = error;