The current stable version of Lo-Dash supports _.curry. In 3.0 Lo-Dash will add support _.rearg, _.ary, & _.curryRight.
Using a combo of them you can easily create auto-curried functions.
var where = _.curry(_.rearg(_.where,1,0));
var isMultilang = where({multilanguage: true});
Comments
The current stable version of Lo-Dash supports _.curry. In 3.0 Lo-Dash will add support _.rearg, _.ary, & _.curryRight. Using a combo of them you can easily create auto-curried functions.