Joe Lissner

Results 8 comments of Joe Lissner

Would love to have this feature added

Did `applySpec` get changed? It looks like it behaves identical to `juxt` now in the examples given or am I missing something? ```js pipe(applySpec([inc, dec]), flatten)(1) // [2, 0] pipe(juxt([inc,...

That's because you're mutating your accumulator, you can get the desired result by doing: ```javascript const tasksReducer = (acc, current) => { const key = current.status; return R.pipe( R.mergeRight({ [key]:...

When using `R.all`, I'm thinking of it as something along the lines of "If anything in my array fails this check, return false". If my list happens to be empty,...

I am seeing this error everywhere after updating to latest version of ant design :( would love some guidance

> luckily, we're not at v1 yet While this may not have the far reaching effects of changing the ordering of `propEq` (https://github.com/ramda/ramda/issues/2937), it is still important to keep in...

I usually create `const isNilOrEmpty = R.anyPass([R.isNil, R.isEmpty])` and then don't use `isEmpty` again. So not a huge deal either way, but makes sense to me `isEmpty` should return true...

Something else to keep in mind is how `R.isNotEmpty` works, which currently is confusing IMO when you have something like ```js const someArr = undefined; if(R.isNotEmpty(someArr)) { doWork(someArr); // we're...