Comparing version 7.1.1 to 7.1.2
@@ -1,2 +0,2 @@ | ||
7.1.1 | ||
7.1.2 | ||
@@ -3,0 +3,0 @@ `R.mergeRight` not found on `Deno` import - [Issue #633](https://github.com/selfrefactor/rambda/issues/633) |
@@ -1481,7 +1481,7 @@ export type RambdaTypes = "Object" | "Number" | "Boolean" | "String" | "Null" | "Array" | "RegExp" | "NaN" | "Function" | "Undefined" | "Async" | "Promise" | "Symbol" | "Set" | "Error" | "Map" | "WeakMap" | "Generator" | "GeneratorFunction" | "BigInt" | "ArrayBuffer"; | ||
*/ | ||
export function mergeWith(fn: (x: any, z: any) => any, a: Obj, b: Record<string, unknown>): Obj; | ||
export function mergeWith<Output>(fn: (x: any, z: any) => any, a: Obj, b: Record<string, unknown>): Output; | ||
export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Record<string, unknown>; | ||
export function mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>, b: Record<string, unknown>): Output; | ||
export function mergeWith(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Obj; | ||
export function mergeWith<Output>(fn: (x: any, z: any) => any, a: Record<string, unknown>): (b: Record<string, unknown>) => Output; | ||
export function mergeWith(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Obj; | ||
export function mergeWith(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Record<string, unknown>; | ||
export function mergeWith<Output>(fn: (x: any, z: any) => any): <U, V>(a: U, b: V) => Output; | ||
@@ -1488,0 +1488,0 @@ |
{ | ||
"name": "rambda", | ||
"version": "7.1.1", | ||
"version": "7.1.2", | ||
"scripts": { | ||
@@ -23,3 +23,3 @@ "populatedocs": "cd ../rambda-scripts && yarn populate:docs", | ||
"build:main": "cross-env NODE_ENV=build rollup -c files/rollup.config.js", | ||
"docs": "npx docsify-cli init ./docs && yarn fix-docsify", | ||
"docs": "npx docsify-cli init ./docs --yes && yarn fix-docsify", | ||
"new": "cd ../rambda-scripts && yarn new", | ||
@@ -26,0 +26,0 @@ "test:all": "jest source -u --bail=false", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
838296