UNPKG
szhmqd21calc
Version:
latest (1.0.1)
1.0.1
1.0.0
这是深圳黑马前端21期研发的吊炸天计算器
szhmqd21calc
/
lib
/
calc.js
12 lines
(9 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
path = require(
'path'
)
// add is object
const
addObj = require(path.
join
(__dirname,
"add.js"
))
const
substrict = require(path.
join
(__dirname,
"substrict.js"
))
//统一暴露出去给外面用
module.exports = {
add
:addObj.
add
, substrict }