mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Some lets to consts and removing of trailing spaces from grunt lint
This commit is contained in:
parent
dcff8971e8
commit
b4a586c0b9
2 changed files with 5 additions and 5 deletions
|
@ -42,13 +42,13 @@ class A1Z26CipherDecode extends Operation {
|
|||
*/
|
||||
run(input, args) {
|
||||
const delim = Utils.charRep(args[0] || "Space");
|
||||
|
||||
|
||||
if (input.length === 0) {
|
||||
return [];
|
||||
}
|
||||
|
||||
let bites = input.split(delim),
|
||||
latin1 = "";
|
||||
const bites = input.split(delim);
|
||||
let latin1 = "";
|
||||
for (let i = 0; i < bites.length; i++) {
|
||||
if (bites[i] < 1 || bites[i] > 26) {
|
||||
throw new OperationError("Error: all numbers must be between 1 and 26.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue