The syntax is indeed invalid, but syntax does exist to do the equivalent:


```javascript

var { f: foo } = someObject;

```

On Mon, Jun 22, 2015 at 1:50 AM, Salehen Rahman <[email protected]>
wrote:

> I know that `import` allows us to alias imports, like so:
> ```javascript
> import { f as foo } from 'f';
> ```
> But what about object destructuring assignments?
> ```javascript
> var { f as foo } = someObject; // Syntax error on Babel
> ```
> Either Babel is very late in the game, or the above syntax is actually not
> supported in ECMAScript.
> It would be really beneficial to support aliasing for object destructuring.
> I find it would make sense since array destructuring assignments allow us
> to assign values to arbitrary variable names.
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to