Brian Di Palma (2014-10-08T15:17:24.000Z)
domenic at domenicdenicola.com (2014-10-15T18:59:30.152Z)
Does that mean that anything that is imported is frozen? You can't add properties to any binding you import? I've never heard of this restriction before. If that restriction doesn't exist then I'm not sure I see what issue this causes ```js import { global } from this module; ``` global in this case is an object and I was under the impression that you could add and remove properties to an object if you imported one. Providing an idiomatic way for modules to access the global seems good ergonomics.