ramda-adjunct icon indicating copy to clipboard operation
ramda-adjunct copied to clipboard

Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.

Results 94 ramda-adjunct issues
Sort by recently updated
recently updated
newest added

**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...

help wanted
feature
Hacktoberfest

**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:...

help wanted
feature
Hacktoberfest

**Is your feature request related to a problem? Please describe.** Complement of [allEqual](https://char0n.github.io/ramda-adjunct/2.25.0/RA.html#.allEqual). **Describe the solution you'd like** ```js notAllEqual([1, 1, 1, 1, 1, 2]); //=> true; notAllEqual([1, 1, 1,...

help wanted
feature
Hacktoberfest

**Is your feature request related to a problem? Please describe.** Function that take **2 lenses** and some **data**, and copy **data structure focused by lens1** to **data structure focused by...

help wanted
feature
Hacktoberfest

**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,...

help wanted
feature
Hacktoberfest

**Is your feature request related to a problem? Please describe.** Complement of http://ramdajs.com/docs/#pathSatisfies **Describe the solution you'd like** ```js pathNotSatisfies(y => y > 0, ['x', 'y'], {x: {y: 2}}); //=>...

help wanted
feature
Hacktoberfest

In my typescript codebase, I actually have some generic typings to make code more clear. ![image](https://user-images.githubusercontent.com/16897658/42033653-d901dcd8-7add-11e8-889f-9f460df0ba8c.png) Here is an example of how it's beautiful (IMHO): ![image](https://user-images.githubusercontent.com/16897658/42033705-0b7f4182-7ade-11e8-99bf-47a5ef1f4e4d.png) Please note `Section` is...

enhancement
help wanted
Hacktoberfest

**Is your feature request related to a problem? Please describe.** Constant order comparator. Usecase is for example if you want to compare list of JIRA issues according of their type....

help wanted
feature
Hacktoberfest

**Is your feature request related to a problem? Please describe.** Introduce new `renameObjKeysWith` and `renameObjKeysBy` and let `renameKeysWith` be an alias of `renameObjKeysBy`. The argumentation why this renaming is happening...

enhancement
help wanted
Hacktoberfest

**Is your feature request related to a problem? Please describe.** Function maps object properties into array. **Describe the solution you'd like** ```js // mapObjIndexedToArray: ((v, k, {k: v}) → v')...

help wanted
feature
Hacktoberfest