John Lenz (2014-01-29T16:35:28.000Z)
domenic at domenicdenicola.com (2014-02-04T20:53:04.610Z)
I'm wondering if this is valid (or should be): ```js // a.js var foo = 1; export foo as 'a.b.c'; // b.js import 'a.b.c' as foo from "a.js" ``` The reason I ask is Modules appear to support have any valid property name (anything) as an export if the Module is defined directly using "newModule".