Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/lodash/internal/
Upload File :
Current File : //etc/kibana/node_modules/lodash/internal/safeGet.js

  /**
   * Gets the value at `key`, unless `key` is "__proto__" or "constructor".
   *
   * @private
   * @param {Object} object The object to query.
   * @param {string} key The key of the property to get.
   * @returns {*} Returns the property value.
   */
  function safeGet(object, key) {
    if (key === 'constructor' && typeof object[key] === 'function') {
      return;
    }

    return key == '__proto__'
      ? undefined
      : object[key];
  }