UNPKG
csaetucalc
Version:
latest (1.0.0)
1.0.0
这是一个简单好用包含加减乘除的方程式计算器,能满足基本的计算方法。
csaetucalc
/
lib
/
times.js
7 lines
(5 loc)
•
90 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
const
times
= (
x, y
) => {
return
x * y }
module
.
exports
= times;