Skip to content

Commit ec02ca6

Browse files
author
Robert Jackson
committed
Fix remaining linting errors.
1 parent 582296c commit ec02ca6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ember-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class EmberApp {
4545
if (process.env.APP_CONFIG) {
4646
let appConfig = JSON.parse(process.env.APP_CONFIG);
4747
let appConfigKey = this.appName;
48-
if (!appConfig.hasOwnProperty(appConfigKey)) {
48+
if (!(appConfigKey in appConfig)) {
4949
this.config[appConfigKey] = appConfig;
5050
}
5151
}

0 commit comments

Comments
 (0)