source: imaps-frontend/node_modules/lodash-es/_baseHas.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 557 bytes
Line 
1/** Used for built-in method references. */
2var objectProto = Object.prototype;
3
4/** Used to check objects for own properties. */
5var hasOwnProperty = objectProto.hasOwnProperty;
6
7/**
8 * The base implementation of `_.has` without support for deep paths.
9 *
10 * @private
11 * @param {Object} [object] The object to query.
12 * @param {Array|string} key The key to check.
13 * @returns {boolean} Returns `true` if `key` exists, else `false`.
14 */
15function baseHas(object, key) {
16 return object != null && hasOwnProperty.call(object, key);
17}
18
19export default baseHas;
Note: See TracBrowser for help on using the repository browser.