From c17fb10e0b8d0012cb09c0c58e3f4a4cb77a7f82 Mon Sep 17 00:00:00 2001 From: Vitaly Domnikov Date: Thu, 29 Sep 2022 14:09:47 -0700 Subject: [PATCH] format code --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index d058c73..f4558fa 100644 --- a/index.html +++ b/index.html @@ -1231,12 +1231,12 @@ function downloadFile() { raw = []; images.each((image) => { - data = imageToString(image) - .split(',') - .map(s => s.trim()) - .filter(Boolean) - .map((byte) => parseInt(byte, 16)); - raw = raw.concat(data); + data = imageToString(image) + .split(',') + .map(s => s.trim()) + .filter(Boolean) + .map((byte) => parseInt(byte, 16)); + raw = raw.concat(data); }); data = new Uint8Array(raw); a = document.createElement("a");