UNPKG
gp8-common-util
Version:
latest (1.1.0)
1.1.0
1.0.0
一些通用的工具,例如,数学运算等...
gp8-common-util
/
modules
/
math.js
12 lines
(9 loc)
•
154 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
Math
_Util = {
sum
(x, y) {
return
x + y },
reduce
(x, y) {
return
x - y } }
module
.
exports
=
Math
_Util