00001 var baseIteratee = require('./_baseIteratee'),
00002 baseSortedIndexBy = require('./_baseSortedIndexBy');
00003
00029 function sortedIndexBy(array, value, iteratee) {
00030 return baseSortedIndexBy(array, value, baseIteratee(iteratee, 2));
00031 }
00032
00033 module.exports = sortedIndexBy;