Sha256: 200fba1ae4605f47c15fd28314c1fb651b33845976df18f56779b5df9a053a15

Contents?: true

Size: 757 Bytes

Versions: 300

Compression:

Stored size: 757 Bytes

Contents

var baseHas = require('./_baseHas'),
    hasPath = require('./_hasPath');

/**
 * Checks if `path` is a direct property of `object`.
 *
 * @static
 * @since 0.1.0
 * @memberOf _
 * @category Object
 * @param {Object} object The object to query.
 * @param {Array|string} path The path to check.
 * @returns {boolean} Returns `true` if `path` exists, else `false`.
 * @example
 *
 * var object = { 'a': { 'b': 2 } };
 * var other = _.create({ 'a': _.create({ 'b': 2 }) });
 *
 * _.has(object, 'a');
 * // => true
 *
 * _.has(object, 'a.b');
 * // => true
 *
 * _.has(object, ['a', 'b']);
 * // => true
 *
 * _.has(other, 'a');
 * // => false
 */
function has(object, path) {
  return object != null && hasPath(object, path, baseHas);
}

module.exports = has;

Version data entries

300 entries across 276 versions & 32 rubygems

Version Path
immosquare-cleaner-0.1.27 node_modules/lodash/has.js
immosquare-cleaner-0.1.26 node_modules/lodash/has.js
immosquare-cleaner-0.1.25 node_modules/lodash/has.js
immosquare-cleaner-0.1.24 node_modules/lodash/has.js
immosquare-cleaner-0.1.23 node_modules/lodash/has.js
sumomo-0.10.4 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.10.3 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.10.2 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.10.1 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.10.0 data/sumomo/api_modules/node_modules/lodash/has.js
reed_sdk-1.0.1 node_modules/lodash/has.js
reed_sdk-1.0.0 node_modules/lodash/has.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/lodash/has.js
sumomo-0.9.0 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.8.22 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.8.21 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.8.20 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.8.17 data/sumomo/api_modules/node_modules/lodash/has.js
sumomo-0.8.16 data/sumomo/api_modules/node_modules/lodash/has.js
disco_app-0.18.0 test/dummy/node_modules/lodash/has.js