_.method

_.method(path, [args])

Creates a function that invokes the method at path of a given object. Any additional arguments are provided to the invoked method.

Since

3.7.0

Arguments

  1. path (Array|string): The path of the method to invoke.
  2. [args] (...*): The arguments to invoke the method with.

Returns

(Function): Returns the new invoker function.

Example

var objects = [
  { 'a': { 'b': _.constant(2) } },

  { 'a': { 'b': _.constant(1) } }
];
 
_.map(objects, _.method('a.b'));
// => [2, 1]
 
_.map(objects, _.method(['a', 'b']));
// => [2, 1]
doc_Lodash
2016-11-27 16:39:05
Comments
Leave a Comment

Please login to continue.