* Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value.
(object, key)
| 63 | * @returns {*} Returns the property value. |
| 64 | */ |
| 65 | function getValue(object, key) { |
| 66 | return object == null ? undefined : object[key]; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Checks if `value` is a host object in IE < 9. |
no outgoing calls
no test coverage detected
searching dependent graphs…