_.prototype.chain()

source

Creates a lodash wrapper instance with explicit method chain sequences enabled.

Since

0.1.0

Returns

(Object): Returns the new lodash wrapper instance.

Example

  1. var users = [
    { 'user': 'barney', 'age': 36 },
    { 'user': 'fred', 'age': 40 }
    ];
    // A sequence without explicit chaining.
    _(users).head();
    // => { 'user': 'barney', 'age': 36 }
    // A sequence with explicit chaining.
    _(users)
    .chain()
    .head()
    .pick('user')
    .value();
    // => { 'user': 'barney' }