8000 add clarifiying comment about not removing code · Kishidle/javascript-exercises@74ab0b7 · GitHub
[go: up one dir, main page]

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

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;
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;
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;
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;
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;
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
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,
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;
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const fibonacci = function() {
2 57AE 2

33
};
44

5+
// Do not edit below this line
56
module.exports = fibonacci;
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;
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;
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;
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;
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;