* Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`.
(object, key)
| 597 | * @returns {*} Returns the function if it's native, else `undefined`. |
| 598 | */ |
| 599 | function getNative(object, key) { |
| 600 | var value = getValue(object, key); |
| 601 | return baseIsNative(value) ? value : undefined; |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * Checks if `value` is a valid array-like index. |
no test coverage detected
searching dependent graphs…