Comparing version 10.1.0 to 11.0.0
@@ -0,1 +1,7 @@ | ||
11.0.0 | ||
- Sync with `Rambda` version `9.1.0` | ||
- Change typings of `R.lensEq` to match `Rambda-adjust` typings | ||
10.1.0 | ||
@@ -2,0 +8,0 @@ |
@@ -11,3 +11,3 @@ { | ||
"typings": "./index.d.ts", | ||
"version": "10.1.0", | ||
"version": "11.0.0", | ||
"dependencies": {}, | ||
@@ -14,0 +14,0 @@ "devDependencies": { |
@@ -23,2 +23,3 @@ export * from './src/allFalse' | ||
export * from './src/interpolate' | ||
export * from './src/into' | ||
export * from './src/isPromise' | ||
@@ -30,2 +31,3 @@ export * from './src/isType' | ||
export * from './src/lensSatisfies' | ||
export * from './src/lte' | ||
export * from './src/mapAsync' | ||
@@ -64,3 +66,2 @@ export * from './src/mapIndexed' | ||
export * from './src/sortObject' | ||
export * from './src/sortWith' | ||
export * from './src/switcher' | ||
@@ -151,3 +152,6 @@ export * from './src/takeUntil' | ||
export * from './src/groupWith' | ||
export * from './src/gt' | ||
export * from './src/gte' | ||
export * from './src/has' | ||
export * from './src/hasIn' | ||
export * from './src/hasPath' | ||
@@ -163,2 +167,5 @@ export * from './src/head' | ||
export * from './src/init' | ||
export * from './src/innerJoin' | ||
export * from './src/insert' | ||
export * from './src/insertAll' | ||
export * from './src/intersection' | ||
@@ -169,2 +176,3 @@ export * from './src/intersperse' | ||
export * from './src/isNil' | ||
export * from './src/isNotNil' | ||
export * from './src/join' | ||
@@ -180,2 +188,3 @@ export * from './src/juxt' | ||
export * from './src/lensProp' | ||
export * from './src/lt' | ||
export * from './src/map' | ||
@@ -190,2 +199,3 @@ export * from './src/match' | ||
export * from './src/mergeAll' | ||
export * from './src/mergeDeepLeft' | ||
export * from './src/mergeDeepRight' | ||
@@ -219,5 +229,7 @@ export * from './src/mergeLeft' | ||
export * from './src/pathOr' | ||
export * from './src/pathSatisfies' | ||
export * from './src/paths' | ||
export * from './src/pick' | ||
export * from './src/pickAll' | ||
export * from './src/pickBy' | ||
export * from './src/pipe' | ||
@@ -235,2 +247,3 @@ export * from './src/pluck' | ||
export * from './src/reduce' | ||
export * from './src/reduceBy' | ||
export * from './src/reject' | ||
@@ -245,2 +258,3 @@ export * from './src/removeIndex' | ||
export * from './src/sortBy' | ||
export * from './src/sortWith' | ||
export * from './src/split' | ||
@@ -253,2 +267,3 @@ export * from './src/splitAt' | ||
export * from './src/sum' | ||
export * from './src/swap' | ||
export * from './src/symmetricDifference' | ||
@@ -255,0 +270,0 @@ export * from './src/tail' |
@@ -1,7 +0,11 @@ | ||
export function prop(propToFind, obj){ | ||
if (arguments.length === 1) return _obj => prop(propToFind, _obj) | ||
export function propFn(searchProperty, obj){ | ||
if (!obj) return undefined | ||
return obj[ propToFind ] | ||
return obj[ searchProperty ] | ||
} | ||
export function prop(searchProperty, obj){ | ||
if (arguments.length === 1) return _obj => prop(searchProperty, _obj) | ||
return propFn(searchProperty, obj) | ||
} |
@@ -5,4 +5,3 @@ import { type } from './type.js' | ||
if (type(obj) !== 'Object') return [] | ||
return Object.values(obj) | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
1061555
321
13108
19670