mirror of
https://github.com/gchq/CyberChef
synced 2025-12-05 23:53:27 +00:00
Fixed offset checker array initialisation
This commit is contained in:
@@ -385,7 +385,7 @@ const StrUtils = {
|
|||||||
runOffsetChecker: function(input, args) {
|
runOffsetChecker: function(input, args) {
|
||||||
let sampleDelim = args[0],
|
let sampleDelim = args[0],
|
||||||
samples = input.split(sampleDelim),
|
samples = input.split(sampleDelim),
|
||||||
outputs = [],
|
outputs = new Array(samples.length),
|
||||||
i = 0,
|
i = 0,
|
||||||
s = 0,
|
s = 0,
|
||||||
match = false,
|
match = false,
|
||||||
|
|||||||
Reference in New Issue
Block a user