405b47c452
This reverts commit 791a579823
.
32 lines
236 B
JavaScript
32 lines
236 B
JavaScript
function add () {
|
|
|
|
}
|
|
|
|
function subtract () {
|
|
|
|
}
|
|
|
|
function sum () {
|
|
|
|
}
|
|
|
|
function multiply () {
|
|
|
|
}
|
|
|
|
function power() {
|
|
|
|
}
|
|
|
|
function factorial() {
|
|
|
|
}
|
|
|
|
module.exports = {
|
|
add,
|
|
subtract,
|
|
sum,
|
|
multiply,
|
|
power,
|
|
factorial,
|
|
};
|