add clarifiying comment about not removing code

This commit is contained in:
Briggs Elsperger
2021-09-11 16:18:19 -06:00
parent 0c5601ebd4
commit 74ab0b7cc6
14 changed files with 15 additions and 1 deletions
+1
View File
@@ -2,4 +2,5 @@ const repeatString = function() {
};
// Do not edit below this line
module.exports = repeatString;
+1
View File
@@ -2,4 +2,5 @@ const reverseString = function(str) {
};
// Do not edit below this line
module.exports = reverseString;
+1
View File
@@ -2,4 +2,5 @@ const removeFromArray = function() {
};
// Do not edit below this line
module.exports = removeFromArray;
+1
View File
@@ -2,4 +2,5 @@ const sumAll = function() {
};
// Do not edit below this line
module.exports = sumAll;
+1
View File
@@ -2,4 +2,5 @@ const leapYears = function() {
};
// Do not edit below this line
module.exports = leapYears;
+1
View File
@@ -6,6 +6,7 @@ const ctof = function() {
};
// Do not edit below this line
module.exports = {
ftoc,
ctof
+1
View File
@@ -22,6 +22,7 @@ const factorial = function() {
};
// Do not edit below this line
module.exports = {
add,
subtract,
+1
View File
@@ -2,4 +2,5 @@ const palindromes = function () {
};
// Do not edit below this line
module.exports = palindromes;
+1
View File
@@ -2,4 +2,5 @@ const fibonacci = function() {
};
// Do not edit below this line
module.exports = fibonacci;
+1
View File
@@ -2,4 +2,5 @@ const getTheTitles = function() {
};
// Do not edit below this line
module.exports = getTheTitles;
+1
View File
@@ -2,4 +2,5 @@ const findTheOldest = function() {
};
// Do not edit below this line
module.exports = findTheOldest;
+1
View File
@@ -2,4 +2,5 @@ const caesar = function() {
};
// Do not edit below this line
module.exports = caesar;
+2 -1
View File
@@ -2,4 +2,5 @@ function pigLatin(string) {
};
module.exports = pigLatin;
// Do not edit below this line
module.exports = pigLatin;
+1
View File
@@ -2,4 +2,5 @@ const snakeCase = function() {
};
// Do not edit below this line
module.exports = snakeCase;