Is it true one of the following does not create a live binding?
```js
let A = 123
export default A // not a live binding?
```
compared to
```js
let A = 123
export {A as default} // live binding?
```
If so, this seems like large source for unexpected behavior when people
create modules. I can imagine people easily overlooking the difference and
expecting live bindings in both cases (this already happened to me).
*/#!/*JoePea
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss