Skip to content

Commit

Permalink
chore@small
Browse files Browse the repository at this point in the history
  • Loading branch information
selfrefactor committed Feb 4, 2025
1 parent 18a43e2 commit 305f4cb
Show file tree
Hide file tree
Showing 10 changed files with 859 additions and 856 deletions.
436 changes: 239 additions & 197 deletions .github/README.md

Large diffs are not rendered by default.

434 changes: 237 additions & 197 deletions README.md

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions dist/rambda.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
'use strict';

require('remeda');

function F() {
return false;
}
Expand Down Expand Up @@ -1699,7 +1697,11 @@ function mergeWithFn(mergeFn, aInput, bInput) {
});
Object.keys(b).forEach(key => {
if (willReturn[key] !== undefined) return;
if (a[key] === undefined) willReturn[key] = b[key];else willReturn[key] = mergeFn(a[key], b[key]);
if (a[key] === undefined) {
willReturn[key] = b[key];
} else {
willReturn[key] = mergeFn(a[key], b[key]);
}
});
return willReturn;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/rambda.umd.js

Large diffs are not rendered by default.

Loading

0 comments on commit 305f4cb

Please sign in to comment.