* This method is like `_.sortedIndex` except that it accepts `iteratee` * which is invoked for `value` and each element of `array` to compute their * sort ranking. The iteratee is invoked with one argument: (value). * * @static * @memberOf _ * @since 4.0.0 * @categ
(array, value, iteratee)
| 8066 | * // => 0 |
| 8067 | */ |
| 8068 | function sortedIndexBy(array, value, iteratee) { |
| 8069 | return baseSortedIndexBy(array, value, getIteratee(iteratee, 2)); |
| 8070 | } |
| 8071 | |
| 8072 | /** |
| 8073 | * This method is like `_.indexOf` except that it performs a binary |
nothing calls this directly
no test coverage detected