From 2ff9b45372b8ec03fa97e5ec85db4198791f7749 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Thu, 22 Aug 2024 00:16:40 -0500 Subject: [PATCH] Remove unused var --- javascript/src/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/src/lib/utils.js b/javascript/src/lib/utils.js index b2c686c3..be198127 100644 --- a/javascript/src/lib/utils.js +++ b/javascript/src/lib/utils.js @@ -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; }