MCPcopy
hub / github.com/deployd/deployd / sortedIndexBy

Function sortedIndexBy

test-app/public/sinon.js:18600–18602  ·  view source on GitHub ↗

* 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 _ * @s

(array, value, iteratee)

Source from the content-addressed store, hash-verified

18598 * // => 0
18599 */
18600 function sortedIndexBy(array, value, iteratee) {
18601 return baseSortedIndexBy(array, value, getIteratee(iteratee, 2));
18602 }
18603
18604 /**
18605 * This method is like `_.indexOf` except that it performs a binary

Callers

nothing calls this directly

Calls 2

baseSortedIndexByFunction · 0.85
getIterateeFunction · 0.85

Tested by

no test coverage detected