Does lodash offer a function that does the same job as the f below?
f = m => k => _.iteratee(k)(m);
_.iteratee(k) is a function, so I expected _.iteratee to be actually binary and curried (so that I could simply _.flip it to obtain the f above), but it's truly unary.
I can't seem to find it in the docs, but maybe I'm just not guessing its name?
I'd like to use it, if it exists, to make this answer even more expressive.