Merge pull request #183 from TheOdinProject/add-comments

add clarifiying comment about not removing code
This commit is contained in:
Briggs Elsperger 2021-09-11 16:23:39 -06:00 committed by GitHub
commit 2197f7b1b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -2,4 +2,5 @@ const caesar = function() {
};
// Do not edit below this line
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;