Skip to content

Commit

Permalink
Omit setTimeout milliseconds (saves bytes). (#2105)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning committed Jan 19, 2020
1 parent 8ac413f commit e628a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extras/named-register.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
this.registerRegistry[name] = define;
if (!firstNamedDefine) {
firstNamedDefine = define;
setTimeout(clearFirstNamedDefine, 0);
setTimeout(clearFirstNamedDefine);
}
return register.apply(this, arguments);
};
Expand Down

0 comments on commit e628a59

Please sign in to comment.