From c330394ff22479285b03ba58a1e3c2186d8d692c Mon Sep 17 00:00:00 2001 From: n1474335 Date: Fri, 3 Jun 2022 13:15:18 +0100 Subject: [PATCH] Fixed toBinary delim adjustment --- src/core/lib/Binary.mjs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/lib/Binary.mjs b/src/core/lib/Binary.mjs index 96a870ec..072000db 100644 --- a/src/core/lib/Binary.mjs +++ b/src/core/lib/Binary.mjs @@ -45,10 +45,6 @@ export function toBinary(data, delim="Space", padding=8) { } else { return ""; } - if (delim.length) { - // Remove the delimiter from the end of the string. - output = output.slice(0, -delim.length); - } return output; }