Merge pull request #183 from TheOdinProject/add-comments
add clarifiying comment about not removing code
This commit is contained in:
commit
2197f7b1b5
|
@ -2,4 +2,5 @@ const repeatString = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = repeatString;
|
||||
|
|
|
@ -2,4 +2,5 @@ const reverseString = function(str) {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = reverseString;
|
||||
|
|
|
@ -2,4 +2,5 @@ const removeFromArray = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = removeFromArray;
|
||||
|
|
|
@ -2,4 +2,5 @@ const sumAll = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = sumAll;
|
||||
|
|
|
@ -2,4 +2,5 @@ const leapYears = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = leapYears;
|
||||
|
|
|
@ -6,6 +6,7 @@ const ctof = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = {
|
||||
ftoc,
|
||||
ctof
|
||||
|
|
|
@ -22,6 +22,7 @@ const factorial = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = {
|
||||
add,
|
||||
subtract,
|
||||
|
|
|
@ -2,4 +2,5 @@ const palindromes = function () {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = palindromes;
|
||||
|
|
|
@ -2,4 +2,5 @@ const fibonacci = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = fibonacci;
|
||||
|
|
|
@ -2,4 +2,5 @@ const getTheTitles = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = getTheTitles;
|
||||
|
|
|
@ -2,4 +2,5 @@ const findTheOldest = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = findTheOldest;
|
||||
|
|
|
@ -2,4 +2,5 @@ const caesar = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = caesar;
|
||||
|
|
|
@ -2,4 +2,5 @@ function pigLatin(string) {
|
|||
|
||||
};
|
||||
|
||||
module.exports = pigLatin;
|
||||
// Do not edit below this line
|
||||
module.exports = pigLatin;
|
||||
|
|
|
@ -2,4 +2,5 @@ const snakeCase = function() {
|
|||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = snakeCase;
|
||||
|
|
Loading…
Reference in New Issue