我想从另一个文件访问功能。该函数包装在一个匿名函数中(module.exports)。
// main.js
const testFile = require('./testFile')
console.log(testFile.test())
// returns testFile.test is not a function
// testFile.js
module.exports = (app) => {
function test(){
return "Hello there"
}
}