UNPKG
qxbk
Version:
latest (1.0.1)
1.0.1
1.0.0
add assets
qxbk
/
index.js
11 lines
(9 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// index.js
function
add
(
a, b
) {
return
a + b; }
function
multiply
(
a, b
) {
return
a * b; }
// 导出模块(供外部使用)
module
.
exports
= { add, multiply };