Problem using function in exported custom module in nodejs Problem using function in exported custom module in nodejs express express

Problem using function in exported custom module in nodejs


Change out

module.exports.validator = validateCustomer;

for

module.exports = validateCustomer

in validator.js.