rambda 7.1.3 → 7.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- 7.1.3
1
+ 7.1.4
2
2
 
3
3
  `R.mergeRight` not found on `Deno` import - [Issue #633](https://github.com/selfrefactor/rambda/issues/633)
4
4
 
package/README.md CHANGED
@@ -9389,7 +9389,7 @@ It takes two objects and a function, which will be used when there is an overlap
9389
9389
  ```typescript
9390
9390
  mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Record<string, unknown>;
9391
9391
  mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Output;
9392
- mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Obj;
9392
+ mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Record<string, unknown>;
9393
9393
  mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Output;
9394
9394
  mergeWith(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Record<string, unknown>;
9395
9395
  mergeWith<Output>(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Output;
@@ -18413,7 +18413,7 @@ describe('R.zipWith', () => {
18413
18413
 
18414
18414
  ## ❯ CHANGELOG
18415
18415
 
18416
- 7.1.3
18416
+ 7.1.4
18417
18417
 
18418
18418
  `R.mergeRight` not found on `Deno` import - [Issue #633](https://github.com/selfrefactor/rambda/issues/633)
18419
18419
 
package/immutable.d.ts CHANGED
@@ -1480,7 +1480,7 @@ export function bind<F extends (...args: readonly any[]) => any, T>(fn: F): (thi
1480
1480
  */
1481
1481
  export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Record<string, unknown>;
1482
1482
  export function mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Output;
1483
- export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Obj;
1483
+ export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Record<string, unknown>;
1484
1484
  export function mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Output;
1485
1485
  export function mergeWith(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Record<string, unknown>;
1486
1486
  export function mergeWith<Output>(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Output;
package/index.d.ts CHANGED
@@ -1480,7 +1480,7 @@ export function bind<F extends (...args: any[]) => any, T>(fn: F): (thisObj: T)
1480
1480
  */
1481
1481
  export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Record<string, unknown>;
1482
1482
  export function mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Output;
1483
- export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Obj;
1483
+ export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Record<string, unknown>;
1484
1484
  export function mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Output;
1485
1485
  export function mergeWith(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Record<string, unknown>;
1486
1486
  export function mergeWith<Output>(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Output;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rambda",
3
- "version": "7.1.3",
3
+ "version": "7.1.4",
4
4
  "scripts": {
5
5
  "populatedocs": "cd ../rambda-scripts && yarn populate:docs",
6
6
  "populatedocs:x": "cd ../rambda-scripts && yarn populate:docs:rambdax",