@@ -23,13 +23,13 @@ module.exports = (function () {
23
23
} ;
24
24
25
25
lazyLoad . createStream = function ( opts ) {
26
- if ( ! opts ) opts = { } ;
26
+ var options = opts || { } ;
27
27
if ( ! harness ) {
28
28
var output = through ( ) ;
29
- getHarness ( { stream : output , objectMode : opts . objectMode } ) ;
29
+ getHarness ( { stream : output , objectMode : options . objectMode } ) ;
30
30
return output ;
31
31
}
32
- return harness . createStream ( opts ) ;
32
+ return harness . createStream ( options ) ;
33
33
} ;
34
34
35
35
lazyLoad . onFinish = function ( ) {
@@ -53,9 +53,9 @@ module.exports = (function () {
53
53
} ) ( ) ;
54
54
55
55
function createExitHarness ( conf ) {
56
- if ( ! conf ) conf = { } ;
56
+ var config = conf || { } ;
57
57
var harness = createHarness ( {
58
- autoclose : defined ( conf . autoclose , false )
58
+ autoclose : defined ( config . autoclose , false )
59
59
} ) ;
60
60
61
61
var stream = harness . createStream ( { objectMode : conf . objectMode } ) ;
@@ -67,7 +67,7 @@ function createExitHarness(conf) {
67
67
var ended = false ;
68
68
stream . on ( 'end' , function ( ) { ended = true ; } ) ;
69
69
70
- if ( conf . exit === false ) return harness ;
70
+ if ( config . exit === false ) return harness ;
71
71
if ( ! canEmitExit || ! canExit ) return harness ;
72
72
73
73
process . on ( 'exit' , function ( code ) {
@@ -97,9 +97,8 @@ module.exports.test = module.exports; // tap compat
97
97
module . exports . test . skip = Test . skip ;
98
98
99
99
function createHarness ( conf_ ) {
100
- if ( ! conf_ ) conf_ = { } ;
101
100
var results = createResult ( ) ;
102
- if ( conf_ . autoclose !== false ) {
101
+ if ( ! conf_ || conf_ . autoclose !== false ) {
103
102
results . once ( 'done' , function ( ) { results . close ( ) ; } ) ;
104
103
}
105
104
0 commit comments