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 42bb265 commit 3eced1cCopy full SHA for 3eced1c
Sprint-3/2-practice-tdd/repeat-str.js
@@ -2,5 +2,4 @@ function repeatStr(str, count) {
2
if (count < 0) throw new Error("negative counts are not valid");
3
return str.repeat(count);
4
}
5
-
6
-module.exports = repeatStr;
+module.exports = repeatStr;
0 commit comments