UNPKG
sssupercalc
Version:
latest (1.0.0)
1.0.0
加减计算器
sssupercalc
/
lib
/
add.js
10 lines
(8 loc)
•
119 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
const
addFunc
= (
x ,y
) => {
return
x + y }
// 导出
module
.
exports
= { add : addFunc }