> I believe that concatenation of modules ought to work fine as an > approach for minimization of requests, because modules are executed > when imported. >
OK, so:
module A {
console.log("a");
export var x;
}
console.log("$");
import x from A;
Does this print:
$
a
or
a
$
?
Thanks!
Kevin
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

