UNPKG
xinchishenwang
Version:
latest (1.0.1)
1.0.1
1.0.0
这是刘摸摸研发的吊炸天计算器
xinchishenwang
/
lib
/
add.js
14 lines
(10 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
add
= (x, y) => {
return
x + y; } module.exports =
add
;
//module.exports.add = add;
//module.exports = {
// add
//}
//exports.add = add;
// console.log(add(1,2));