-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
135 lines (114 loc) · 2.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*!
* log-utils <https://github.com/jonschlinkert/log-utils>
* Copyright (c) 2016-present, Jon Schlinkert.
* Licensed under the MIT License.
*/
'use strict';
const timestamp = require('time-stamp');
const colors = require('ansi-colors');
const log = console.log;
/**
* Get a red error symbol.
*
* ```js
* console.log(log.error); //=> ✖
* ```
* @name .error
* @api public
*/
getter(log, 'error', () => colors.red(colors.symbols.cross));
/**
* Get a cyan info symbol.
*
* ```js
* console.log(log.info); //=> ℹ
* ```
* @name .info
* @api public
*/
getter(log, 'info', () => colors.cyan(colors.symbols.info));
/**
* Get a green success symbol.
*
* ```js
* console.log(log.success); //=> ✔
* ```
* @name .success
* @api public
*/
getter(log, 'success', () => colors.green(colors.symbols.check));
/**
* Get a yellow warning symbol.
*
* ```js
* console.log(log.warning); //=> ⚠
* ```
* @name .warning
* @api public
*/
getter(log, 'warning', () => colors.yellow(colors.symbols.warning));
/**
* Get a formatted timestamp.
*
* ```js
* console.log(log.timestamp); //=> [15:27:46]
* ```
* @name .timestamp
* @api public
*/
getter(log, 'timestamp', () => {
return '[' + colors.gray(timestamp('HH:mm:ss')) + ']';
});
/**
* Returns a formatted string prefixed by a green check.
*
* ```js
* console.log(log.ok(' foo'));
* console.log(log.ok(' foo'));
* console.log(log.ok(' foo'));
* console.log(log.ok('foo'));
* // Results in:
* // ✔ foo
* // ✔ foo
* // ✔ foo
* // ✔ foo
* ```
* @name .ok
* @api public
*/
log.ok = str => {
let ok = colors.green(colors.symbols.check);
return str.replace(/^(\s*)(.*?)$/, (m, s, v) => {
return s + ok + ' ' + v;
});
};
/**
* Make the given text bold and underlined.
*
* ```js
* console.log(log.heading('foo'));
* // or
* console.log(log.heading('foo', 'bar'));
* ```
* @name .heading
* @api public
*/
log.heading = (...args) => {
let str = args.filter(v => v !== void 0).map(String).join(' ');
return colors.bold.underline(str);
};
/**
* Utility for defining a getter
*/
function getter(obj, prop, fn) {
Object.defineProperty(obj, prop, {
configurable: true,
enumerable: true,
get: fn
});
}
/**
* Expose `log`
*/
log.__proto__ = colors;
module.exports = log;