chore(lint): Clean up ROT13.mjs as per linter request
This commit is contained in:
parent
2e1f746957
commit
3926e412e0
@ -57,12 +57,12 @@ class ROT13 extends Operation {
|
|||||||
const output = input,
|
const output = input,
|
||||||
rot13Lowercase = args[0],
|
rot13Lowercase = args[0],
|
||||||
rot13Upperacse = args[1],
|
rot13Upperacse = args[1],
|
||||||
rotNumbers = args[2];
|
rotNumbers = args[2],
|
||||||
let amount = args[3],
|
amount = args[3];
|
||||||
chr;
|
let chr,
|
||||||
|
amountModified;
|
||||||
|
|
||||||
if (amount) {
|
if (amount) {
|
||||||
let amountModified;
|
|
||||||
for (let i = 0; i < input.length; i++) {
|
for (let i = 0; i < input.length; i++) {
|
||||||
amountModified = amount;
|
amountModified = amount;
|
||||||
chr = input[i];
|
chr = input[i];
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user