Skip to content

Commit

Permalink
[eslint] removed shadowing of data and unused i
Browse files Browse the repository at this point in the history
  • Loading branch information
mastef committed May 14, 2018
1 parent 049e1ae commit d081f27
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,7 @@ var GoogleSpreadsheet = function( ss_key, auth_id, options ){

var cells = [];
var entries = forceArray(data['entry']);
var data = null;
var i = 0;
data = null;
while(entries.length > 0) {
cells.push( new SpreadsheetCell( self, ss_key, worksheet_id, entries.shift() ) );
}
Expand Down

0 comments on commit d081f27

Please sign in to comment.