added trailing semicolon to all function and module exports

This commit is contained in:
Michael Frank
2021-05-10 21:27:55 +12:00
parent 58d2eb108a
commit 2f63b3e380
30 changed files with 1770 additions and 7014 deletions
+7 -7
View File
@@ -1,26 +1,26 @@
const add = function() {
}
};
const subtract = function() {
}
};
const sum = function() {
}
};
const multiply = function() {
}
};;
const power = function() {
}
};
const factorial = function() {
}
};
module.exports = {
add,
@@ -29,4 +29,4 @@ module.exports = {
multiply,
power,
factorial
}
};