(value, context, argCount)
| 1412 | }; |
| 1413 | }; |
| 1414 | var cb = function(value, context, argCount) { |
| 1415 | if (value == null) return _.identity; |
| 1416 | if (_.isFunction(value)) return optimizeCb(value, context, argCount); |
| 1417 | if (_.isObject(value)) return _.matcher(value); |
| 1418 | return _.property(value); |
| 1419 | }; |
| 1420 | _.iteratee = function(value, context) { |
| 1421 | return cb(value, context, Infinity); |
| 1422 | }; |
no test coverage detected