mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-09 15:55:01 -04:00
Removed whitespace changes
This commit is contained in:
parent
a357d2a1be
commit
3ad39889a9
1 changed files with 0 additions and 4 deletions
|
@ -190,7 +190,6 @@ class Recipe {
|
|||
for (let i = startFrom; i < this.opList.length; i++) {
|
||||
op = this.opList[i];
|
||||
log.debug(`[${i}] ${op.name} ${JSON.stringify(op.ingValues)}`);
|
||||
|
||||
if (op.disabled) {
|
||||
log.debug("Operation is disabled, skipping");
|
||||
continue;
|
||||
|
@ -201,7 +200,6 @@ class Recipe {
|
|||
}
|
||||
|
||||
try {
|
||||
|
||||
if (op.name != "Comment") {
|
||||
input = await dish.get(op.inputType);
|
||||
}
|
||||
|
@ -234,12 +232,10 @@ class Recipe {
|
|||
output = await op.run(input, op.ingValues);
|
||||
dish.set(output, op.outputType);
|
||||
}
|
||||
|
||||
// if comment is the lastRunOp, the output we want is the previous command, not necessarily a String
|
||||
if (op.name != "Comment"){
|
||||
this.lastRunOp = op;
|
||||
}
|
||||
|
||||
} catch (err) {
|
||||
// Return expected errors as output
|
||||
if (err instanceof OperationError ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue