Skip to content

Commit

Permalink
Remove unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 22, 2024
1 parent f8884ea commit 2ff9b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/src/lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ exports.get_data_file = function(name, encoding = 'utf8') {
*/
exports.get_answer = function(n) {
for (const line of exports.get_data_file('answers.tsv').split(new RegExp('\\r?\\n'))) {
const [id_, type, size, value] = line.split('\t');
const [id_, type, _, value] = line.split('\t');
if (id_ !== n.toString()) {
continue;
}
Expand Down

0 comments on commit 2ff9b45

Please sign in to comment.