Skip to content

Commit 74ab0b7

Browse files
committed
add clarifiying comment about not removing code
1 parent 0c5601e commit 74ab0b7

File tree

14 files changed

+15
-1
lines changed

14 files changed

+15
-1
lines changed

Diff for: 02_repeatString/repeatString.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const repeatString = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = repeatString;

Diff for: 03_reverseString/reverseString.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const reverseString = function(str) {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = reverseString;

Diff for: 04_removeFromArray/removeFromArray.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const removeFromArray = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = removeFromArray;

Diff for: 05_sumAll/sumAll.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const sumAll = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = sumAll;

Diff for: 06_leapYears/leapYears.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const leapYears = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = leapYears;

Diff for: 07_tempConversion/tempConversion.js

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const ctof = function() {
66

77
};
88

9+
// Do not edit below this line
910
module.exports = {
1011
ftoc,
1112
ctof

Diff for: 08_calculator/calculator.js

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const factorial = function() {
2222

2323
};
2424

25+
// Do not edit below this line
2526
module.exports = {
2627
add,
2728
subtract,

Diff for: 09_palindromes/palindromes.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const palindromes = function () {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = palindromes;

Diff for: 10_fibonacci/fibonacci.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const fibonacci = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = fibonacci;

Diff for: 11_getTheTitles/getTheTitles.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const getTheTitles = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = getTheTitles;

Diff for: 12_findTheOldest/findTheOldest.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const findTheOldest = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = findTheOldest;

Diff for: 13_caesar/caesar.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const caesar = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = caesar;

Diff for: pigLatin/pigLatin.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ function pigLatin(string) {
22

33
};
44

5-
module.exports = pigLatin;
5+
// Do not edit below this line
6+
module.exports = pigLatin;

Diff for: snakeCase/snakeCase.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const snakeCase = function() {
22

33
};
44

5+
// Do not edit below this line
56
module.exports = snakeCase;

0 commit comments

Comments
 (0)