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