UNPKG
cust_math
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.0.0
custome package for mathematical operations
github.com/kky-ykk/cust_math
kky-ykk/cust_math
cust_math
/
src
/
index.js
14 lines
(11 loc)
•
287 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
const
custMath = {
add
:
function
addTwoNums
(
num1, num2
) {
return
num1 + num2; },
subtract
:
function
subtractTwoNums
(
num1, num2
) {
return
num1 - num2; },
multiply
:
function
multiplyTwoNums
(
num1, num2
) {
return
num1 * num2; }, };