Skip to content

Commit 2a5b49d

Browse files
committed
prettier formatting
1 parent 7fc5c19 commit 2a5b49d

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Sprint-3/2-practice-tdd/count.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function countChar(stringOfCharacters, findCharacter) {
55
count++;
66
}
77
}
8-
return count;
8+
return count;
99
}
1010

1111
module.exports = countChar;

Sprint-3/2-practice-tdd/repeat.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ function repeat(str, count) {
66
}
77

88
module.exports = repeat;
9-

Sprint-3/2-practice-tdd/repeat.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,3 @@ test("should throw an error for negative count", () => {
5050
repeat(str, count);
5151
}).toThrow("Invalid count value");
5252
});
53-

0 commit comments

Comments
 (0)