Added eslint space-before-blocks rule

This commit is contained in:
n1474335 2019-08-27 18:13:33 +01:00
parent 44b90be7d6
commit 094d352e5f
17 changed files with 23 additions and 22 deletions

View file

@ -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 "";