File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
import chalk from 'chalk'
2
2
3
+ /**
4
+ * Message routing and formatting matrix.
5
+ * @private
6
+ * @type {Object }
7
+ */
3
8
export default function matrix ( sOut , sErr ) {
4
9
return {
5
10
debug : {
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ export default class Verbosity extends Console {
54
54
} ) ( errorStream ? errorStream : sOut )
55
55
56
56
super ( sOut , sErr )
57
-
58
57
this . willEmit = Boolean ( namespace )
59
58
60
59
this . timeFormatter = ( ts => ts ?
@@ -71,12 +70,6 @@ export default class Verbosity extends Console {
71
70
this . _stderr = sErr
72
71
this . threshold = verbosity ? verbosity : 3
73
72
this . emitter = this . willEmit && sparkles ( namespace )
74
-
75
- /**
76
- * Message routing and formatting matrix.
77
- * @private
78
- * @type {Object }
79
- */
80
73
this . matrix = matrix ( sOut , sErr )
81
74
}
82
75
You can’t perform that action at this time.
0 commit comments