Skip to content
Advertisement

Is module.exports = { fn } same as exports.fn = fn

For job test i need to create library like this:

JavaScript

But i’m working with typescript and compiled do-it.ts file looks like this:

JavaScript

Is exports from this two examples will work the same?

Advertisement

Answer

Roughly speaking, yes; certainly the resulting exports are the same.

I mean, if you did:

JavaScript

and later did

JavaScript

you’d have a problem, because the second one completesly replaces the previous exports object.

You don’t need to create that object at all, it’s created for you before your module is called. So really, you can just do

JavaScript

and then

JavaScript

in the first place.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement