Hi!
This does not get generated:
module.exports = function foo() { /* ... */ }
This does:
function foo() { /* ... */ }
module.exports = foo
I was expecting the first to work properly. It's not a super blocker, but declaring/exporting is quite a trendy pattern in the nodejs community.
Thanks!
Hi!
This does not get generated:
This does:
I was expecting the first to work properly. It's not a super blocker, but declaring/exporting is quite a trendy pattern in the nodejs community.
Thanks!