From ec899efdc1157077ec57fd5880876730e2155e03 Mon Sep 17 00:00:00 2001 From: wjaaaaaaat <04amid.foyer@icloud.com> Date: Mon, 17 Feb 2025 15:25:31 -0500 Subject: [PATCH] removing strictMode I thought it served a different purpose than it did in ./FromBase64.mjs --- src/core/operations/FromHex.mjs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/core/operations/FromHex.mjs b/src/core/operations/FromHex.mjs index d3c469d0..560abdac 100644 --- a/src/core/operations/FromHex.mjs +++ b/src/core/operations/FromHex.mjs @@ -35,11 +35,6 @@ class FromHex extends Operation { name: "Remove non-alphabet chars", type: "boolean", value: true - }, - { - name: "Strict mode", - type: "boolean", - value: false } ]; this.checks = [ @@ -103,7 +98,7 @@ class FromHex extends Operation { */ run(input, args) { const [delim, removeNonAlphChars, strictMode] = [args[0] || "Auto", args[1], args[2]]; - return fromHex(input, delim, 2, removeNonAlphChars, strictMode); + return fromHex(input, delim, 2, removeNonAlphChars); } /**