Mark Volkmann (2014-03-14T14:19:50.000Z)
domenic at domenicdenicola.com (2014-03-21T15:02:35.859Z)
I understand it's hard to make changes after a certain point. It's too bad though that developers will have to remember that the way to import a few things from a module is: ```js import {foo, bar} from 'somewhere'; ``` but the way to import the whole module is: ```js module SomeModule from 'somewhere'; ``` instead of ```js import SomeModule from 'somewhere'; ``` It just seems so clean to say that if you want to import something, you always use the "import" keyword.