mirror of
https://github.com/gchq/CyberChef.git
synced 2026-03-07 07:47:19 +01:00
Base85: Ignore whitespace
This commit is contained in:
@@ -52,6 +52,8 @@ class FromBase85 extends Operation {
|
||||
|
||||
if (input.length === 0) return [];
|
||||
|
||||
input = input.replace(/\s+/g, "");
|
||||
|
||||
const matches = input.match(/<~(.+?)~>/);
|
||||
if (matches !== null) input = matches[1];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user