Given the following
```js
a = <F new/>
```
We used to generate:
```js
a = React.createElement(F, {"new": true})
```
but now we generate
```js
a = React.createElement(F, {new: true})
```
If you need to quote these (ie for ES3 you can use
transform-property-literals)
2 lines
48 B
JavaScript
2 lines
48 B
JavaScript
var e = <F aaa new const var default foo-bar/>;
|