aearly/icepick

icepick/fp interface

Closed this issue · 1 comments

would be neat to have a lodash/fp interface in icepick/fp.

with curried: fn(a, b, c) => fn(b, c, a); versions of icepick functions.

This would be cool, and not too hard to do to with _.curry/_.rearg. It would incur a performance penalty though. I'm happy using arrow funcs currently.

const result = arr.map(item => i.assoc(item, 'foo', bar))