I’m curious of this history behind this case being missing, I’ve been crawling 
through the spec and old esdiscuss and can’t find it:

I expected the following:

export * as someName from "module”;

To behave much like:

Import * as someName from "module”;
export someName;

Except without adding “someName” to this module’s scope.

In common-js terms, transpiled to:

exports.someName = require(“module”);


Does anyone have context as to why this piece of syntax doesn’t exist? Is there 
a case to be made to incrementally add it in ES7?


- Lee Byron
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to