I am confused: I thought "import *" was removed because, in the
presence of dynamically configured loaders, it would leave tools
(and programmers) unable to infer the local scope without executing code.
Now we have the same issue back via "export *", just need a re-exporting
intermediate module?
No, you don't. `import *` affects the names bound in a module.
`export *` doesn't. You still can't import a name without listing it
explicitly, meaning that it's always easy to determine the local
scope.
Sam
Ah, thanks. That makes sense.
Claus
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss