UNPKG
cust-math_2
Version:
latest (1.0.0)
1.0.0
A custom math utility for basic operations
github.com/kky-ykk/cust_math
kky-ykk/cust_math
cust-math_2
/
dist
/
index.js
9 lines
(8 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
custMath
=
void
0
;
exports
.
custMath
= {
add
:
(
num1, num2
) =>
num1 + num2,
subtract
:
(
num1, num2
) =>
num1 - num2,
multiply
:
(
num1, num2
) =>
num1 * num2, };