_.prototype.chain

_.prototype.chain()

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

Since

0.1.0

Returns

(Object): Returns the new lodash wrapper instance.

Example

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' }
doc_Lodash
2016-11-27 16:39:39
Comments
Leave a Comment

Please login to continue.