Object exports
module.exports 的引用
示例代码
// common.jsfunction sayHello(name) {console.log(Hello ${name} !)}function sayGoodbye(name) {console.log(Goodbye ${name} !)}module.exports.sayHello = sayHelloexports.sayGoodbye = sayGoodbye
本文档使用 WanXiangYunDang 构建