[CLEANUP] Code cleanup to reduce the amount of duplicate code each day

This commit is contained in:
2021-12-05 11:25:07 +01:00
parent 039c36f09a
commit 8b3963fa6a
6 changed files with 40 additions and 40 deletions

View File

@@ -19,7 +19,7 @@ class Utils {
static zeroes(length: number): number[] {
let res = [];
const res = [];
for (let i = 0; i < length; i++) {
res.push(0);
}