diff --git a/src/core/operations/Substitute.mjs b/src/core/operations/Substitute.mjs index 1dac1c53..a8bf2291 100644 --- a/src/core/operations/Substitute.mjs +++ b/src/core/operations/Substitute.mjs @@ -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(); }