Skip to content

Commit

Permalink
fix(index): ensure correct cache lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
stoffeastrom committed Mar 31, 2016
1 parent b482d57 commit b32ff61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -54,7 +54,7 @@ export class DefaultLoader extends Loader {
constructor() {
super();

this.moduleRegistry = {};
this.moduleRegistry = Object.create(null);
this.useTemplateLoader(new TextTemplateLoader());

let that = this;
Expand Down

0 comments on commit b32ff61

Please sign in to comment.