Sha256: e79016298f394b54126ecea31581cf921f00043ae9ac9896bd98daa64afaa0cc

Contents?: true

Size: 860 Bytes

Versions: 266

Compression:

Stored size: 860 Bytes

Contents

var baseInvoke = require('./_baseInvoke'),
    baseRest = require('./_baseRest');

/**
 * Creates a function that invokes the method at `path` of a given object.
 * Any additional arguments are provided to the invoked method.
 *
 * @static
 * @memberOf _
 * @since 3.7.0
 * @category Util
 * @param {Array|string} path The path of the method to invoke.
 * @param {...*} [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]
 */
var method = baseRest(function(path, args) {
  return function(object) {
    return baseInvoke(object, path, args);
  };
});

module.exports = method;

Version data entries

266 entries across 264 versions & 30 rubygems

Version Path
trusty-cms-4.3 node_modules/lodash/method.js
sumomo-0.8.10 data/sumomo/api_modules/node_modules/lodash/method.js
boring_generators-0.10.0 tmp/templates/app_template/node_modules/lodash/method.js
trusty-cms-4.2.3 node_modules/lodash/method.js
boring_generators-0.9.0 tmp/templates/app_template/node_modules/lodash/method.js
tang-0.2.1 spec/tang_app/node_modules/lodash/method.js
trusty-cms-4.2.2 node_modules/lodash/method.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/lodash/method.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/lodash/method.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/lodash/method.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/lodash/method.js
boring_generators-0.8.0 tmp/templates/app_template/node_modules/lodash/method.js
boring_generators-0.7.0 tmp/templates/app_template/node_modules/lodash/method.js
trusty-cms-4.2.1 node_modules/lodash/method.js
trusty-cms-4.2 node_modules/lodash/method.js
trusty-cms-4.1.9 node_modules/lodash/method.js
boring_generators-0.6.0 tmp/templates/app_template/node_modules/lodash/method.js
trusty-cms-4.1.8 node_modules/lodash/method.js
boring_generators-0.5.0 tmp/templates/app_template/node_modules/lodash/method.js
tang-0.2.0 spec/tang_app/node_modules/lodash/method.js