var times = function (val) { console.log(val); return val.substring(0,8); } //exports: 通过该属性,对外共享本模块的私有变量与函数。 module.exports.times = times;