Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit 91f5391

Browse files
committed
removed default param, unsupported in Node 4.5 LTS
1 parent 6652fa1 commit 91f5391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/gulp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ module.exports = function() {
113113
}
114114
};
115115

116-
return function(compilationOptions={}, pluginOptions={}) {
117-
return new CompilationStream(compilationOptions, pluginOptions);
116+
return function(compilationOptions, pluginOptions) {
117+
return new CompilationStream(compilationOptions || {}, pluginOptions || {});
118118
};
119119
};

0 commit comments

Comments
 (0)