[Solved] What is happening here in this code? [closed]
The util module has exported an object that contains (probably amongst others) a function under the key inherits: exports = { inherits: function() … } The express module on the other hand, has directly exported a whole function, and that function is immediately invoked and the result assigned to the variable express. module.exports = exports … Read more