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

View File

@ -2,4 +2,5 @@ const repeatString = function() {
}; };
// Do not edit below this line
module.exports = repeatString; module.exports = repeatString;

View File

@ -2,4 +2,5 @@ const reverseString = function(str) {
}; };
// Do not edit below this line
module.exports = reverseString; module.exports = reverseString;

View File

@ -2,4 +2,5 @@ const removeFromArray = function() {
}; };
// Do not edit below this line
module.exports = removeFromArray; module.exports = removeFromArray;

View File

@ -2,4 +2,5 @@ const sumAll = function() {
}; };
// Do not edit below this line
module.exports = sumAll; module.exports = sumAll;

View File

@ -2,4 +2,5 @@ const leapYears = function() {
}; };
// Do not edit below this line
module.exports = leapYears; module.exports = leapYears;

View File

@ -6,6 +6,7 @@ const ctof = function() {
}; };
// Do not edit below this line
module.exports = { module.exports = {
ftoc, ftoc,
ctof ctof

View File

@ -22,6 +22,7 @@ const factorial = function() {
}; };
// Do not edit below this line
module.exports = { module.exports = {
add, add,
subtract, subtract,

View File

@ -2,4 +2,5 @@ const palindromes = function () {
}; };
// Do not edit below this line
module.exports = palindromes; module.exports = palindromes;

View File

@ -2,4 +2,5 @@ const fibonacci = function() {
}; };
// Do not edit below this line
module.exports = fibonacci; module.exports = fibonacci;

View File

@ -2,4 +2,5 @@ const getTheTitles = function() {
}; };
// Do not edit below this line
module.exports = getTheTitles; module.exports = getTheTitles;

View File

@ -2,4 +2,5 @@ const findTheOldest = function() {
}; };
// Do not edit below this line
module.exports = findTheOldest; module.exports = findTheOldest;

View File

@ -2,4 +2,5 @@ const caesar = function() {
}; };
// Do not edit below this line
module.exports = caesar; module.exports = caesar;

View File

@ -2,4 +2,5 @@ function pigLatin(string) {
}; };
module.exports = pigLatin; // Do not edit below this line
module.exports = pigLatin;

View File

@ -2,4 +2,5 @@ const snakeCase = function() {
}; };
// Do not edit below this line
module.exports = snakeCase; module.exports = snakeCase;