1 var baseIteratee = require(
'./_baseIteratee'),
2 baseSortedIndexBy = require(
'./_baseSortedIndexBy');
29 function sortedIndexBy(array, value, iteratee) {
30 return baseSortedIndexBy(array, value, baseIteratee(iteratee, 2));
33 module.exports = sortedIndexBy;