wrapperAt

Seq
since 1.0.0

Arguments

  • ...(string|string[]) The property paths to pick.

Returns

Object the new `lodash` wrapper instance.

This method is the wrapper version of _.at.

Example of Lodash _.wrapperAt

var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };

_(object).at(['a[0].b.c', 'a[1]']).value();
// => [3, 4]