File tree 3 files changed +8
-1
lines changed
react-scripts/fixtures/kitchensink/src/features/syntax
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 7
7
'use strict' ;
8
8
9
9
const plugins = [
10
+ // Necessary to include regardless of the environment because
11
+ // in practice some other transforms (such as object-rest-spread)
12
+ // don't work without it: https://github.com/babel/babel/issues/7215
13
+ require . resolve ( 'babel-plugin-transform-es2015-destructuring' ) ,
10
14
// class { handleClick = () => { } }
11
15
require . resolve ( 'babel-plugin-transform-class-properties' ) ,
12
16
// The following two plugins use Object.assign directly, instead of Babel's
Original file line number Diff line number Diff line change 14
14
"babel-plugin-dynamic-import-node" : " 1.1.0" ,
15
15
"babel-plugin-syntax-dynamic-import" : " 6.18.0" ,
16
16
"babel-plugin-transform-class-properties" : " 6.24.1" ,
17
+ "babel-plugin-transform-es2015-destructuring" : " 6.23.0" ,
17
18
"babel-plugin-transform-object-rest-spread" : " 6.26.0" ,
18
19
"babel-plugin-transform-react-constant-elements" : " 6.23.0" ,
19
20
"babel-plugin-transform-react-jsx" : " 6.24.1" ,
Original file line number Diff line number Diff line change @@ -40,7 +40,9 @@ export default class extends Component {
40
40
return (
41
41
< div id = "feature-object-destructuring" >
42
42
{ this . state . users . map ( user => {
43
- const { id, name } = user ;
43
+ const { id, ...rest } = user ;
44
+ // eslint-disable-next-line no-unused-vars
45
+ const [ { name, ...innerRest } ] = [ { ...rest } ] ;
44
46
return < div key = { id } > { name } </ div > ;
45
47
} ) }
46
48
</ div >
You can’t perform that action at this time.
0 commit comments