(value, context, argCount)
| 752 | // The function we call internally to generate a callback. It invokes |
| 753 | // `_.iteratee` if overridden, otherwise `baseIteratee`. |
| 754 | function cb(value, context, argCount) { |
| 755 | if (_$1.iteratee !== iteratee) return _$1.iteratee(value, context); |
| 756 | return baseIteratee(value, context, argCount); |
| 757 | } |
| 758 | |
| 759 | // Returns the results of applying the `iteratee` to each element of `obj`. |
| 760 | // In contrast to `_.map` it returns an object. |
no test coverage detected