What is different between module.exports = testMethod ; and module.exports = { testMethod } ; Because when I am using module
module.exports = testMethod ;
module.exports = { testMethod } ;
module