This commit is contained in:
Boof 2023-05-12 11:28:27 +02:00 committed by GitHub
parent dba3c551b6
commit cabd32965b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,8 +4,7 @@ var array256 = "null"
var array1 = "null" var array1 = "null"
var output = "null" var output = "null"
var linesDone = "1" var linesDone = "1"
const outputArea = document.get const outputArea = document.getElementById("outputArea").value
document.get
window.onload = function loadFiles() { window.onload = function loadFiles() {
loadString() loadString()
@ -62,7 +61,8 @@ function mergeToCsv() {
A256 = array256[linesDone]; A256 = array256[linesDone];
Astring = arrayString[linesDone]; Astring = arrayString[linesDone];
A1 = array1[linesDone]; A1 = array1[linesDone];
output = Astring + "," + Amd5 + "," + A1 + "," + A256
outputArea = outputArea + "\n" + output
} }
linesDone + 1 linesDone + 1
} }