Vladimír Gorej
Vladimír Gorej
@eakray do you wish to continue with this PR?
@eakray sure, no worries, take your time.
Vulnerabilities badge as shown here https://www.npmjs.com/package/rxjs-websockets
I'm not sure I understand changes that have been made to this PR during last 3 commits. `master` branch now has `isBlank` function which is part of the public API...
Right, let me know if you need any assistence
Legitimate
The answer seems to be the same as for `RA.concatAll`. We return the `undefined`. One can lift the e.g. `maxListBy` into monadic context and it becomes `Nothing` monad at the...
The problem is that everybody is using different implementations of monadic types. You have ramda-fantasy, folktale, monet, sanctuary, we have our own `RA.Identity` (and more will come) etc.. How do...
I think we should have our own monadic types. I already started the work [here](https://github.com/char0n/ramda-adjunct/tree/a3109fc1020c6f4a8686d032cb7d539a230af258/src/fantasy-land). Then we can provide some abstraction layer on top of functions like `maxListBy` or `concatAll`.
Well your concerns are valid and I understand them. My vision with monadic types is to be used internally in our compositions and using monads should be prefered way for...