Using lodash, this is one way to get the expected result:
var res = _.map(obj, _.rearg(_.pick, [2,1]));
The above code snippet can be misleading. Without using the function, _.reargit becomes:
_.map(obj, function(v, k, a) { return _.pick(a, k); });
Basically, the function was reargused to reorder the arguments passed to the method pick.