Vladimír Gorej

Results 588 comments of Vladimír Gorej

@sigfriedCub1990, assigned, I'll look into the PR shortly.

Interesting idea, but I have couple of points to discuss. **The case of declarativness** ```js condAll([ [isAlpha, alpha], [isBravo, bravo], [isCharlie, charlie], [isDelta, delta], [isEcho, echo], ]) ``` ```js pipe(...

Yes, thought about it some more and I tend to agree. condAll is a good name, 'when' is only an implementation detail. You could easily use ifElse or any other...

Code review for #788 has been provided, will take probably couple of days to merge it. Regarding your questions: > Should Infinity values return MAX_VALUE /MIN_VALUE or MAX_SAFE_INTEGER/MIN_SAFE_INTEGER? we need...

@mellero I'd say that https://github.com/char0n/ramda-adjunct/pull/1454 seems like a dead PR (no response from author), so to unblock this issue feel free to issue another PR for #788 and take a...

Yes this is going to be possible to implement.

This is so exotic that I'm going to put it on hold until there is somebody else that really needs it.

Yeah it's normal. These functions are for asserting FL monad types. The problem is that they are not tested. They are still being exported as public API. So If we...

yeah why not ```js const presence = when(isEmpty, stubNull) ``` Alternative implementation by specializing [defaultWhen](https://char0n.github.io/ramda-adjunct/2.35.0/RA.html#.defaultWhen) ```js const presence = RA.defaultWhen(R.isEmpty, null); ```

@tauantcamargo sure