From 74ab0b7cc6e67ac13c8f1af337f59595633aafa9 Mon Sep 17 00:00:00 2001 From: Briggs Elsperger Date: Sat, 11 Sep 2021 16:18:19 -0600 Subject: [PATCH] add clarifiying comment about not removing code --- 02_repeatString/repeatString.js | 1 + 03_reverseString/reverseString.js | 1 + 04_removeFromArray/removeFromArray.js | 1 + 05_sumAll/sumAll.js | 1 + 06_leapYears/leapYears.js | 1 + 07_tempConversion/tempConversion.js | 1 + 08_calculator/calculator.js | 1 + 09_palindromes/palindromes.js | 1 + 10_fibonacci/fibonacci.js | 1 + 11_getTheTitles/getTheTitles.js | 1 + 12_findTheOldest/findTheOldest.js | 1 + 13_caesar/caesar.js | 1 + pigLatin/pigLatin.js | 3 ++- snakeCase/snakeCase.js | 1 + 14 files changed, 15 insertions(+), 1 deletion(-) diff --git a/02_repeatString/repeatString.js b/02_repeatString/repeatString.js index 34926ed..4359bbe 100644 --- a/02_repeatString/repeatString.js +++ b/02_repeatString/repeatString.js @@ -2,4 +2,5 @@ const repeatString = function() { }; +// Do not edit below this line module.exports = repeatString; diff --git a/03_reverseString/reverseString.js b/03_reverseString/reverseString.js index 5ce90ac..b6d0a9a 100644 --- a/03_reverseString/reverseString.js +++ b/03_reverseString/reverseString.js @@ -2,4 +2,5 @@ const reverseString = function(str) { }; +// Do not edit below this line module.exports = reverseString; diff --git a/04_removeFromArray/removeFromArray.js b/04_removeFromArray/removeFromArray.js index 80880df..1bedeb0 100644 --- a/04_removeFromArray/removeFromArray.js +++ b/04_removeFromArray/removeFromArray.js @@ -2,4 +2,5 @@ const removeFromArray = function() { }; +// Do not edit below this line module.exports = removeFromArray; diff --git a/05_sumAll/sumAll.js b/05_sumAll/sumAll.js index aab00af..00880c7 100644 --- a/05_sumAll/sumAll.js +++ b/05_sumAll/sumAll.js @@ -2,4 +2,5 @@ const sumAll = function() { }; +// Do not edit below this line module.exports = sumAll; diff --git a/06_leapYears/leapYears.js b/06_leapYears/leapYears.js index 68e3af8..681eeef 100644 --- a/06_leapYears/leapYears.js +++ b/06_leapYears/leapYears.js @@ -2,4 +2,5 @@ const leapYears = function() { }; +// Do not edit below this line module.exports = leapYears; diff --git a/07_tempConversion/tempConversion.js b/07_tempConversion/tempConversion.js index 85e28a5..6ef3e85 100644 --- a/07_tempConversion/tempConversion.js +++ b/07_tempConversion/tempConversion.js @@ -6,6 +6,7 @@ const ctof = function() { }; +// Do not edit below this line module.exports = { ftoc, ctof diff --git a/08_calculator/calculator.js b/08_calculator/calculator.js index 51109d7..c22e8d2 100644 --- a/08_calculator/calculator.js +++ b/08_calculator/calculator.js @@ -22,6 +22,7 @@ const factorial = function() { }; +// Do not edit below this line module.exports = { add, subtract, diff --git a/09_palindromes/palindromes.js b/09_palindromes/palindromes.js index d818304..8d21018 100644 --- a/09_palindromes/palindromes.js +++ b/09_palindromes/palindromes.js @@ -2,4 +2,5 @@ const palindromes = function () { }; +// Do not edit below this line module.exports = palindromes; diff --git a/10_fibonacci/fibonacci.js b/10_fibonacci/fibonacci.js index 1afa45a..bb2c8cc 100644 --- a/10_fibonacci/fibonacci.js +++ b/10_fibonacci/fibonacci.js @@ -2,4 +2,5 @@ const fibonacci = function() { }; +// Do not edit below this line module.exports = fibonacci; diff --git a/11_getTheTitles/getTheTitles.js b/11_getTheTitles/getTheTitles.js index 6fb7d68..74b04df 100644 --- a/11_getTheTitles/getTheTitles.js +++ b/11_getTheTitles/getTheTitles.js @@ -2,4 +2,5 @@ const getTheTitles = function() { }; +// Do not edit below this line module.exports = getTheTitles; diff --git a/12_findTheOldest/findTheOldest.js b/12_findTheOldest/findTheOldest.js index c7808b1..366856a 100644 --- a/12_findTheOldest/findTheOldest.js +++ b/12_findTheOldest/findTheOldest.js @@ -2,4 +2,5 @@ const findTheOldest = function() { }; +// Do not edit below this line module.exports = findTheOldest; diff --git a/13_caesar/caesar.js b/13_caesar/caesar.js index 23355cf..c61d2f8 100644 --- a/13_caesar/caesar.js +++ b/13_caesar/caesar.js @@ -2,4 +2,5 @@ const caesar = function() { }; +// Do not edit below this line module.exports = caesar; diff --git a/pigLatin/pigLatin.js b/pigLatin/pigLatin.js index c2a557c..162abff 100644 --- a/pigLatin/pigLatin.js +++ b/pigLatin/pigLatin.js @@ -2,4 +2,5 @@ function pigLatin(string) { }; - module.exports = pigLatin; +// Do not edit below this line +module.exports = pigLatin; diff --git a/snakeCase/snakeCase.js b/snakeCase/snakeCase.js index bb0910b..6df3af3 100644 --- a/snakeCase/snakeCase.js +++ b/snakeCase/snakeCase.js @@ -2,4 +2,5 @@ const snakeCase = function() { }; +// Do not edit below this line module.exports = snakeCase;