Hacker News new | ask | show | jobs
by CrossEye 4376 days ago
A nice example. Thank you.

I just want to note that in Ramda, because of it's strong insistence on a data-last API (which makes the currying easier), this would be written in this order:

    result = filter(greater(R), map(distance(origin), array));
But it's precisely the same idea.