File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ module.exports = function (pattern, options) {
19
19
cb ( ! match ) ;
20
20
} , {
21
21
objectMode : true ,
22
- passthrough : options . passthough !== false ,
22
+ passthrough : options . passthrough !== false ,
23
23
restore : options . restore
24
24
} ) ;
25
25
} ;
Original file line number Diff line number Diff line change @@ -222,8 +222,8 @@ describe('filter.restore', function () {
222
222
streamFilter1 . end ( ) ;
223
223
} ) ;
224
224
225
- it ( 'should end when not using the passthough option' , function ( cb ) {
226
- var stream = filter ( '*.json' , { restore : true , passthough : false } ) ;
225
+ it ( 'should end when not using the passthrough option' , function ( cb ) {
226
+ var stream = filter ( '*.json' , { restore : true , passthrough : false } ) ;
227
227
var restoreStream = stream . restore ;
228
228
var buffer = [ ] ;
229
229
You can’t perform that action at this time.
0 commit comments