Skip to content

Commit

Permalink
removed undefined variable when isolating team record line
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Conrad committed Mar 23, 2017
1 parent bc47901 commit c910def
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,16 +230,16 @@ module.exports = {
if (overallRecordLine === true) {
overallRecordLineFound = true;
}
if ((leagueStandingsForLine === false) && (leagueStandingsForLineFound === false) && (overallRecordLineFound === false) && (wildCardLineFound === false)) {
if ((leagueStandingsForLine === false) && (overallRecordLineFound === false) && (wildCardLineFound === false)) {
// this will be the team and their record
console.log(line);
//console.log(line);
}
}
}
}
});
}
console.log(jsonStandings);
//console.log(jsonStandings);
return jsonStandings;
},
readFromFile: function(fileLocation) {
Expand Down

0 comments on commit c910def

Please sign in to comment.