ramda APIs
- map
- identity
- isEmpty
- equals
- filter
- isNil
- pipe
- omit
- propOr
- pick
- prop
- reject
- range
- uniq
- chain
- sortBy
- reduce
- compose
- difference
- set
- flatten
- last
- startsWith
- has
- sortWith
- splitEvery
- pathOr
- indexBy
- lensPath
- complement
- ifElse
- head
- join
- zipWith
- union
- find
- includes
- mergeDeepRight
- over
- append
- memoizeWith
- forEach
- pluck
- curry
- times
- transpose
- all
- findLast
- inc
- always
- mergeDeepLeft
- lensProp
- path
- mergeAll
- clone
- toLower
- either
- propSatisfies
- both
- pathSatisfies
- propEq
- add
- trim
- any
- hasIn
- repeat
- adjust
- findIndex
- init
- split
- KeyValuePair
- zip
- indexOf
- toPairs
- groupBy
- countBy
- descend
- concat
- keys
- length
- mergeWith
- pair
- takeWhile
- defaultTo
- uniqBy
- ascend
- sort
Other Related APIs
ramda#ifElse TypeScript Examples
The following examples show how to use
ramda#ifElse.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: server-utils.ts From anthem with Apache License 2.0 | 6 votes |
updateAmounts = ifElse(
({ value }: ITxMsg) => {
const { amount } = value as IMsgDelegate;
return Boolean(amount && Array.isArray(amount));
},
updateFn,
identity,
)
Example #2
Source File: utils.ts From notabug with MIT License | 6 votes |
listingNodeToIds = ifElse(
x => !!x,
pipe<GunNode, GunNode, readonly string[]>(
unpackNode,
Listing.ListingNode.ids
),
always([])
)