From 68b689e0f747d74479e31659a9c9b0682cf65613 Mon Sep 17 00:00:00 2001 From: Boof <97455552+hexahigh@users.noreply.github.com> Date: Fri, 12 May 2023 12:22:06 +0200 Subject: [PATCH] rvh --- other/csv-merge/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/other/csv-merge/index.js b/other/csv-merge/index.js index 8d9a4da..f13abda 100644 --- a/other/csv-merge/index.js +++ b/other/csv-merge/index.js @@ -40,7 +40,7 @@ function load1() { .then(arrayBuffer => { const decoder = new TextDecoder('utf-8'); const data = decoder.decode(new Uint8Array(arrayBuffer)); - arrayMD5 = data.split('\n'); + array1 = data.split('\n'); }) } function load256() { @@ -49,7 +49,7 @@ function load256() { .then(arrayBuffer => { const decoder = new TextDecoder('utf-8'); const data = decoder.decode(new Uint8Array(arrayBuffer)); - arrayMD5 = data.split('\n'); + array256 = data.split('\n'); }) }