removing strictMode pt. 2

This commit is contained in:
wjaaaaaaat 2025-02-17 15:40:58 -05:00 committed by GitHub
parent d0d1f743f0
commit 5e86407825
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -97,7 +97,7 @@ class FromHex extends Operation {
* @returns {byteArray}
*/
run(input, args) {
const [delim, removeNonAlphChars, strictMode] = [args[0] || "Auto", args[1], args[2]];
const [delim, removeNonAlphChars] = [args[0] || "Auto", args[1]];
return fromHex(input, delim, 2, removeNonAlphChars);
}