Skip to content

Commit

Permalink
[eslint] removed shadowing of opts
Browse files Browse the repository at this point in the history
  • Loading branch information
mastef committed May 14, 2018
1 parent 6f50866 commit 049e1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ var GoogleSpreadsheet = function( ss_key, auth_id, options ){
colCount: 20
};

var opts = _.extend({}, defaults, opts);
opts = _.extend({}, defaults, opts);

// if column headers are set, make sure the sheet is big enough for them
if (opts.headers && opts.headers.length > opts.colCount) {
Expand Down

0 comments on commit 049e1ae

Please sign in to comment.