rambda icon indicating copy to clipboard operation
rambda copied to clipboard

Faster and smaller alternative to Ramda

Results 15 rambda issues
Sort by recently updated
recently updated
newest added

R.allPass is returning false for this case ``` var plusEq = function(w, x, y, z) {return w + x === y + z; }; console.log(R.allPass([plusEq])(3,3,3,3)) ``` output: `false`

done waiting release

This is public TODO list for `Rambda` and `Rambdax` which is updated once a task is done:

This issue is opened to encourage suggestions and feedback [Previous such issue](https://github.com/selfrefactor/rambda/issues/459)

Rambda: ![image](https://user-images.githubusercontent.com/56323178/160195576-fa310725-7b98-4427-897f-0e61d4734bf5.png) Ramda: ![image](https://user-images.githubusercontent.com/56323178/160195653-e544423d-41ce-46df-80b9-cc26bc3b58cf.png) Also applies to mergeRight, mergeLeft, and mergeDeepLeft

REPL

There might be a better title for this PR. Starting from TypeScript 4.5 strings can be narrowed: https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-5.html#template-string-types-as-discriminants Also see https://github.com/microsoft/TypeScript/pull/46137#issuecomment-932730666 Should I do the same in `@types/ramda` as well?...

When using `mergeDeepRight`, if I pass an object in the first parameter that contains a property that is a funcion, that function is not merged into the final object. Having...

This is how the object looks like. ``` subOrder { _id: new ObjectId("631dcbb157c64966c4aa2db3"), ``` After doing a deep clone. This is how it looks in console logs ``` subOrder {...

in progress

Ramda'a `R.where` returns early when first predicate fails. But rambda's one evaluates all the predicates in the spec object regardless if one of them already failed. That may potentially be...

Hi and thanks for the lib! While replacing lodash with rambda I found that webpack optimizations cannot be performed due to top-level variables. Basically, webpack treats variable definitions, such as...

in progress