source: imaps-frontend/node_modules/lodash-es/_baseInverter.js@ d565449

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
RevLine 
[d565449]1import 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 */
14function 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
21export default baseInverter;
Note: See TracBrowser for help on using the repository browser.