Brad Compton (he/him)
Brad Compton (he/him)
I haven't done a deep dive into the code yet, but I reviewed the tests. I'd like to see some tests that verify that the functions don't mutate the input...
Here is a counterexample, please let me know if I am missing something: https://goo.gl/xSpHEk Edit: I see that with `iterableOnly` it works. This says more about a limitation of the...
This does seem reasonable to me. In both cases we are taking something at one index and moving it to a different index, and we already have the concept of...
Currying is pretty core to how Ramda treats parameters. It allows us to pass in one parameter at a time instead of all at once. In JS terms, it's basically...
@anurbol I think you have a little too much faith in Typescript. I use TS professionally at my job, and it lacks a lot of features that would make functional...