We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60cdcea commit c4acc96Copy full SHA for c4acc96
src/lib/churn/churn.ts
@@ -21,7 +21,7 @@ async function compute(options: Options): Promise<Map<Path, number>> {
21
22
const gitLogCommand = buildGitLogCommand(options);
23
const rawStringOfAllChurns = executeGitLogCommand(gitLogCommand);
24
- const arrayOfAllChurns = computeNumberOfTimesFilesChanged(
+ const arrayOfAllChurns = computeChurnsPerFiles(
25
rawStringOfAllChurns,
26
options.directory
27
);
@@ -100,7 +100,7 @@ function buildGitLogCommand(options: Options): string {
100
.join(" ");
101
}
102
103
-function computeNumberOfTimesFilesChanged(
+function computeChurnsPerFiles(
104
gitLogOutput: string,
105
directory: string
106
): ParsedLine[] {
0 commit comments