Skip to content
This repository was archived by the owner on Nov 4, 2021. It is now read-only.

Commit 775bcf0

Browse files
authored
refractor(browserify): fix duplicate declaration
1 parent 3ec92e0 commit 775bcf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browserify-es2015/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var defaultOptions = {
4040
}
4141

4242
module.exports = function(options) {
43-
var options = merge(defaultOptions, options);
43+
options = merge(defaultOptions, options);
4444

4545
var b = browserify(options.src, options.browserifyOptions)
4646
.transform(babelify, options.babelifyOptions);

0 commit comments

Comments
 (0)