Pedr Browne
Pedr Browne
**Is your feature request related to a problem? Please describe.** Returns a string made by inserting the separator between each element and concatenating all the elements into a single string....
**Is your feature request related to a problem? Please describe.** Replace items for which `predicate` returns true using the `replacer` function. **Describe the solution you'd like** ```js const { curry,...
condAll
**Is your feature request related to a problem? Please describe.** A version of Ramda's [cond](http://ramdajs.com/docs/#cond) which doesn't exit once a predicate returns true. So every predicate is run in turn,...
**Is your feature request related to a problem? Please describe.** Intersect object keys with the list of provided key names. **Describe the solution you'd like** ```js const intersectKeysWith = curry((fn,...
**Is your feature request related to a problem? Please describe.** Finds a min/max value in an array. These functions will be partial only. They will not be total as we...
compound
**Is your feature request related to a problem? Please describe.** Like compose, but with rest params also being passed in. The first param is the return value of the previous...
condOr
**Is your feature request related to a problem? Please describe.** A version of `R.cond` where the original value is returned as the default (instead of `undefined`) **Describe the solution you'd...
nthOr
**Is your feature request related to a problem? Please describe.** Ramda offers a `R.propOr`, but nothing for dealing with indexes. This function will return the nth element of the given...
**Is your feature request related to a problem? Please describe.** Filter keys of the object by evaluating the value. **Describe the solution you'd like** ```js const o = { a:...
**Is your feature request related to a problem? Please describe.** Determines if the Array-like object length is in specified boundaries. **Describe the solution you'd like** ```js const lengthInRange = R.curry((from,...