Kevin Smith (2013-12-05T16:25:22.000Z)
>
>
> Although the import side has this one extra syntactic special case for
> defaults:
>
>   import x, {y as z, ...} from "..."
>
> That seems really redundant. I assume mixing default import with
> others will be an extremely rare case, and when really needed, can
> easily be expressed as either
>
>   import {default as x, y as z, ...} from "..."
>
> or
>
>   import x from "..."
>   import {y as z, ...} from "..."
>

I didn't even realize that was allowed, and I agree with you completely.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20131205/2d588e35/attachment.html>
domenic at domenicdenicola.com (2013-12-10T02:17:40.667Z)
I didn't even realize that was allowed, and I agree with you completely.