main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
734 bytes
|
Line | |
---|
1 | import baseForOwn from './_baseForOwn.js';
|
---|
2 |
|
---|
3 | /**
|
---|
4 | * The base implementation of `_.invert` and `_.invertBy` which inverts
|
---|
5 | * `object` with values transformed by `iteratee` and set by `setter`.
|
---|
6 | *
|
---|
7 | * @private
|
---|
8 | * @param {Object} object The object to iterate over.
|
---|
9 | * @param {Function} setter The function to set `accumulator` values.
|
---|
10 | * @param {Function} iteratee The iteratee to transform values.
|
---|
11 | * @param {Object} accumulator The initial inverted object.
|
---|
12 | * @returns {Function} Returns `accumulator`.
|
---|
13 | */
|
---|
14 | function baseInverter(object, setter, iteratee, accumulator) {
|
---|
15 | baseForOwn(object, function(value, key, object) {
|
---|
16 | setter(accumulator, iteratee(value), key, object);
|
---|
17 | });
|
---|
18 | return accumulator;
|
---|
19 | }
|
---|
20 |
|
---|
21 | export default baseInverter;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.