123456789101112131415161718192021222324252627282930313233 |
- var baseIteratee = require('./_baseIteratee'),
- baseSortedIndexBy = require('./_baseSortedIndexBy');
- function sortedIndexBy(array, value, iteratee) {
- return baseSortedIndexBy(array, value, baseIteratee(iteratee, 2));
- }
- module.exports = sortedIndexBy;
|