Skip to content

Commit

Permalink
Fix named-register.js - omit name from register call. Resolves system…
Browse files Browse the repository at this point in the history
…js#2293. (systemjs#2329) (#1)

* Fix named-register.js - omit name from register call. Resolves systemjs#2293.

* Feedback

Co-authored-by: Joel Denning <[email protected]>
  • Loading branch information
dumganhar and joeldenning authored Jan 26, 2024
1 parent 290f526 commit 336cff9
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 @@
firstNamedDefine = null;
});
}
return register.apply(this, arguments);
return register.apply(this, [deps, declare]);
};

var resolve = systemJSPrototype.resolve;
Expand Down

0 comments on commit 336cff9

Please sign in to comment.