22 lines
267 B
JavaScript
22 lines
267 B
JavaScript
// module.exports = {
|
|
// test() {
|
|
// return "哈哈哈哈哈"
|
|
// }
|
|
// }
|
|
|
|
exports.testOne = function() {
|
|
return "testOne"
|
|
}
|
|
|
|
exports.testTwo = function() {
|
|
return "testTwo"
|
|
}
|
|
|
|
|
|
exports.testThree = function() {
|
|
return "testThree"
|
|
}
|
|
|
|
{
|
|
|
|
} |