Skip to content

Commit

Permalink
Merge pull request #177 from 201-created/keys
Browse files Browse the repository at this point in the history
No longer need Ember.keys
  • Loading branch information
stefanpenner committed Mar 13, 2017
2 parents 7b423a2 + c08ccbb commit 1fbc09e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/resolvers/classic.js
Expand Up @@ -13,7 +13,7 @@ class ModuleRegistry {
this._entries = entries || requirejs.entries;
}
moduleNames() {
return (Object.keys || Ember.keys)(this._entries);
return Object.keys(this._entries);
}
has(moduleName) {
return moduleName in this._entries;
Expand Down

0 comments on commit 1fbc09e

Please sign in to comment.