0.0.2 • Published 4 years ago

bl-study v0.0.2

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

该文件名必须为README.md,此文件可以写一些描述自己npm包的说明,便于使用者查看。

const add = function (x, y) { console.log("两个数相加的方法"); return x - 0 + y - 0; }

module.exports = { add }

var bl = require('./index');

console.log(bl.add(1, 2));