Revert "Merge branch 'jest'"

This reverts commit f76e9e108f.
This commit is contained in:
Marvin Gay
2021-05-12 21:47:42 -04:00
parent f76e9e108f
commit ad1c0c407f
45 changed files with 217 additions and 6166 deletions
+15 -15
View File
@@ -1,26 +1,26 @@
const add = function() {
function add () {
};
}
const subtract = function() {
function subtract () {
};
}
const sum = function() {
function sum () {
};
}
const multiply = function() {
};;
const power = function() {
function multiply () {
};
}
const factorial = function() {
function power() {
};
}
function factorial() {
}
module.exports = {
add,
@@ -28,5 +28,5 @@ module.exports = {
sum,
multiply,
power,
factorial
factorial,
};