UNPKG
tcalc65
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
一个计算器功能包
tcalc65
/
index.js
10 lines
(7 loc)
•
126 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
add
(
x, y
) {
return
x + y; };
function
mul
(
x, y
) {
return
x * y; };
module
.
exports
= { add, mul };