>
>
> 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.
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to