Skip to content

Commit

Permalink
fix: nx should not have arrow function
Browse files Browse the repository at this point in the history
  • Loading branch information
afeiship committed Aug 31, 2023
1 parent c5640fe commit 250e06d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ else if (freeModule) {
return fn.apply(this, args);
}

overload.add = (inOptions) => {
overload.add = function (inOptions) {
var args = inOptions.args;
var fn = inOptions.fn;
var types = args.join();
Expand Down
2 changes: 1 addition & 1 deletion dist/index.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
return fn.apply(this, args);
}

overload.add = (inOptions) => {
overload.add = function (inOptions) {
var args = inOptions.args;
var fn = inOptions.fn;
var types = args.join();
Expand Down

0 comments on commit 250e06d

Please sign in to comment.