Переглянути джерело

Removes forEach call

main
Eric Amodio 6 роки тому
джерело
коміт
59b39fda2b
1 змінених файлів з 2 додано та 2 видалено
  1. +2
    -2
      src/git/parsers/blameParser.ts

+ 2
- 2
src/git/parsers/blameParser.ts Переглянути файл

@ -137,14 +137,14 @@ export class GitBlameParser {
} }
} }
commits.forEach(c => {
for (const [, c] of commits) {
if (c.author === undefined) return; if (c.author === undefined) return;
const author = authors.get(c.author); const author = authors.get(c.author);
if (author === undefined) return; if (author === undefined) return;
author.lineCount += c.lines.length; author.lineCount += c.lines.length;
});
}
const sortedAuthors = new Map([...authors.entries()].sort((a, b) => b[1].lineCount - a[1].lineCount)); const sortedAuthors = new Map([...authors.entries()].sort((a, b) => b[1].lineCount - a[1].lineCount));

Завантаження…
Відмінити
Зберегти