Naming things is hard and arguments in generic utility functions are no exception. Making functions "tacit" or "point free" removes the need for the extra parameter names and can make your code cleaner and more succinct. In this lesson, we'll create a normal, "pointed" function and then use ramda's useWith
function to refactor our way to point-free bliss.
lovely. Thank you for succinctly describing how to achieve the point-free style with sanity.