> Feel free to suggest alternatives, but forgive me if I'm not willing to 
> respond to every opinion on this one. :}
> 

How about:

    import "ga" as ga;

to import the whole module, and

    import "ga" as { foo, bar };

to import just parts of the module. I feel like this makes a lot of sense, and 
is similar to the destructuring pattern.

    let ga = new Ga();

vs

    let { foo, bar } = new Ga();

Nathan                                    
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to