* Gets the appropriate "indexOf" function. If the `_.indexOf` method is * customized, this method returns the custom method, otherwise it returns * the `baseIndexOf` function. * * @private * @returns {Function} Returns the "indexOf" function.
()
| 36603 | * @returns {Function} Returns the "indexOf" function. |
| 36604 | */ |
| 36605 | function getIndexOf() { |
| 36606 | var result = (result = lodash.indexOf) === indexOf ? baseIndexOf : result; |
| 36607 | return result; |
| 36608 | } |
| 36609 | |
| 36610 | /** |
| 36611 | * Checks if `value` is a native function. |
no outgoing calls
no test coverage detected