File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ module.exports = {
11
11
"original" : "fluent" ,
12
12
"replacement" : "fluent/compat"
13
13
} ] ,
14
- "@babel/plugin-proposal-async-generator-functions" ,
15
- "@babel/plugin-proposal-class-properties"
14
+ "@babel/plugin-proposal-async-generator-functions"
16
15
] ,
17
16
} ;
Original file line number Diff line number Diff line change 56
56
},
57
57
"devDependencies" : {
58
58
"@babel/plugin-proposal-async-generator-functions" : " ^7.2.0" ,
59
- "@babel/plugin-proposal-class-properties" : " ^7.7.4" ,
60
59
"@babel/preset-env" : " ^7.5.5" ,
61
60
"@babel/preset-react" : " 7.0.0" ,
62
61
"babel-jest" : " ^24.8.0" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ export default class ReactLocalization {
17
17
this . bundles = CachedSyncIterable . from ( bundles ) ;
18
18
}
19
19
20
- getBundle = id => mapBundleSync ( this . bundles , id ) ;
20
+ getBundle ( id ) {
21
+ return mapBundleSync ( this . bundles , id ) ;
22
+ }
21
23
22
24
getString ( id , args , fallback ) {
23
25
const bundle = this . getBundle ( id ) ;
You can’t perform that action at this time.
0 commit comments