mirror of
https://github.com/gchq/CyberChef
synced 2026-02-12 22:43:48 +00:00
Added eslint space-before-blocks rule
This commit is contained in:
@@ -34,7 +34,7 @@ class MicrosoftScriptDecoder extends Operation {
|
||||
run(input, args) {
|
||||
const matcher = /#@~\^.{6}==(.+).{6}==\^#~@/;
|
||||
const encodedData = matcher.exec(input);
|
||||
if (encodedData){
|
||||
if (encodedData) {
|
||||
return MicrosoftScriptDecoder._decode(encodedData[1]);
|
||||
} else {
|
||||
return "";
|
||||
|
||||
Reference in New Issue
Block a user