My guess: if you re-export something from a module, then you still have to 
import it if you want to use it in that module. Is that correct?

Examples of re-exporting:

    export * from "crypto";                    // re-exporting another module's 
exports
    export { foo, bar } from "crypto";         // re-exporting specified 
exports from another module

That seems redundant. Maybe one could mark things that should be re-exported 
when importing them? On the other hand, this may be rare enough that it doesn’t 
warrant the extra syntax.

-- 
Dr. Axel Rauschmayer
a...@rauschma.de

home: rauschma.de
twitter: twitter.com/rauschma
blog: 2ality.com

_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to