(value, context, argCount)
| 775 | // The function we call internally to generate a callback. It invokes |
| 776 | // `_.iteratee` if overridden, otherwise `baseIteratee`. |
| 777 | function cb(value, context, argCount) { |
| 778 | if (_$1.iteratee !== iteratee) return _$1.iteratee(value, context); |
| 779 | return baseIteratee(value, context, argCount); |
| 780 | } |
| 781 | |
| 782 | // Returns the results of applying the `iteratee` to each element of `obj`. |
| 783 | // In contrast to `_.map` it returns an object. |
no test coverage detected