I get the error: "login is not defined" on my node.js app, when I try to get the function login in my server.js from a module module1.js which needs data:
//module1.js
module.exports = (data) => {
var login = function(data){
console.log(data)
}
exports.login = login;
};
//server.js
var test = require(__dirname + '/app/modules/module1.js')(data);
test.login();