fix: GetAllCasings.mjs - newline bug

This commit is contained in:
Paul Hager 2022-03-28 14:46:41 +02:00
parent 98a6baf55a
commit e2b7ac68ef
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class GetAllCasings extends Operation {
}
result += temp.join("") + "\n";
}
return result;
return result.slice(0, -1);
}
}