mirror of
https://github.com/gchq/CyberChef
synced 2025-01-01 07:18:47 +00:00
fix: GetAllCasings.mjs - newline bug
This commit is contained in:
parent
98a6baf55a
commit
e2b7ac68ef
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class GetAllCasings extends Operation {
|
||||||
}
|
}
|
||||||
result += temp.join("") + "\n";
|
result += temp.join("") + "\n";
|
||||||
}
|
}
|
||||||
return result;
|
return result.slice(0, -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue