Sha256: a74a0012595ae8f8436133e014c0a88996bcce9daf9c05a8073bb83018229987

Contents?: true

Size: 1.43 KB

Versions: 272

Compression:

Stored size: 1.43 KB

Contents

var castPath = require('./_castPath'),
    isFunction = require('./isFunction'),
    toKey = require('./_toKey');

/**
 * This method is like `_.get` except that if the resolved value is a
 * function it's invoked with the `this` binding of its parent object and
 * its result is returned.
 *
 * @static
 * @since 0.1.0
 * @memberOf _
 * @category Object
 * @param {Object} object The object to query.
 * @param {Array|string} path The path of the property to resolve.
 * @param {*} [defaultValue] The value returned for `undefined` resolved values.
 * @returns {*} Returns the resolved value.
 * @example
 *
 * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] };
 *
 * _.result(object, 'a[0].b.c1');
 * // => 3
 *
 * _.result(object, 'a[0].b.c2');
 * // => 4
 *
 * _.result(object, 'a[0].b.c3', 'default');
 * // => 'default'
 *
 * _.result(object, 'a[0].b.c3', _.constant('default'));
 * // => 'default'
 */
function result(object, path, defaultValue) {
  path = castPath(path, object);

  var index = -1,
      length = path.length;

  // Ensure the loop is entered when path is empty.
  if (!length) {
    length = 1;
    object = undefined;
  }
  while (++index < length) {
    var value = object == null ? undefined : object[toKey(path[index])];
    if (value === undefined) {
      index = length;
      value = defaultValue;
    }
    object = isFunction(value) ? value.call(object) : value;
  }
  return object;
}

module.exports = result;

Version data entries

272 entries across 271 versions & 29 rubygems

Version Path
sumomo-0.8.16 data/sumomo/api_modules/node_modules/lodash/result.js
disco_app-0.18.0 test/dummy/node_modules/lodash/result.js
disco_app-0.18.2 test/dummy/node_modules/lodash/result.js
sumomo-0.8.15 data/sumomo/api_modules/node_modules/lodash/result.js
trusty-cms-5.0.7 node_modules/lodash/result.js
appmap-0.72.2 ./node_modules/lodash/result.js
trusty-cms-5.0.6 node_modules/lodash/result.js
appmap-0.72.1 ./node_modules/lodash/result.js
appmap-0.72.0 ./node_modules/lodash/result.js
trusty-cms-5.0.5 node_modules/lodash/result.js
trusty-cms-5.0.4 node_modules/lodash/result.js
appmap-0.71.0 ./node_modules/lodash/result.js
disco_app-0.16.1 test/dummy/node_modules/lodash/result.js
appmap-0.70.2 ./node_modules/lodash/result.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/result.js
appmap-0.70.1 ./node_modules/lodash/result.js
appmap-0.70.0 ./node_modules/lodash/result.js
appmap-0.69.0 ./node_modules/lodash/result.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/result.js
appmap-0.68.2 ./node_modules/lodash/result.js