mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 00:31:31 -04:00
Linting
This commit is contained in:
parent
6adc5dda93
commit
0a4fae1576
2 changed files with 2 additions and 3 deletions
|
@ -331,10 +331,10 @@ class Magic {
|
||||||
*/
|
*/
|
||||||
async speculativeExecution(depth=0, extLang=false, intensive=false, recipeConfig=[], useful=false, crib=null) {
|
async speculativeExecution(depth=0, extLang=false, intensive=false, recipeConfig=[], useful=false, crib=null) {
|
||||||
if (depth < 0) return [];
|
if (depth < 0) return [];
|
||||||
console.log("still alive");
|
|
||||||
// Find any operations that can be run on this data
|
// Find any operations that can be run on this data
|
||||||
const matchingOps = this.opPatterns.findMatchingInputRegexes(this.inputStr);
|
const matchingOps = this.opPatterns.findMatchingInputRegexes(this.inputStr);
|
||||||
console.log(matchingOps);
|
|
||||||
let results = [];
|
let results = [];
|
||||||
|
|
||||||
// Record the properties of the current data
|
// Record the properties of the current data
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
|
|
||||||
import Operation from "../Operation.mjs";
|
import Operation from "../Operation.mjs";
|
||||||
import {BRAILLE_LOOKUP} from "../lib/Braille.mjs";
|
import {BRAILLE_LOOKUP} from "../lib/Braille.mjs";
|
||||||
import magicObject from "../lib/MagicObject.mjs";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* From Braille operation
|
* From Braille operation
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue