Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rambdax

Package Overview
Dependencies
Maintainers
1
Versions
216
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rambdax - npm Package Compare versions

Comparing version 10.1.0 to 11.0.0

src/gt.js

6

CHANGELOG.md

@@ -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 @@

2

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc