mirror of
https://github.com/gchq/CyberChef
synced 2025-01-01 07:18:47 +00:00
Added ignoreCase feature in Substitute operation.
This commit is contained in:
parent
9c3ddca269
commit
1a9833132d
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class Substitute extends Operation {
|
|||
if (dict[char.toLowerCase()] !== undefined)
|
||||
return dict[char.toLowerCase()].toUpperCase();
|
||||
} else {
|
||||
if(dict[char.toUpperCase()] !== undefined)
|
||||
if (dict[char.toUpperCase()] !== undefined)
|
||||
return dict[char.toUpperCase()].toLowerCase();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue