Security update for permissions_by_term
[yaffs-website] / node_modules / uncss / node_modules / lodash / assignInWith.js
1 var copyObjectWith = require('./internal/copyObjectWith'),
2     createAssigner = require('./internal/createAssigner'),
3     keysIn = require('./keysIn');
4
5 /**
6  * This method is like `_.assignIn` except that it accepts `customizer` which
7  * is invoked to produce the assigned values. If `customizer` returns `undefined`
8  * assignment is handled by the method instead. The `customizer` is invoked
9  * with five arguments: (objValue, srcValue, key, object, source).
10  *
11  * **Note:** This method mutates `object`.
12  *
13  * @static
14  * @memberOf _
15  * @alias extendWith
16  * @category Object
17  * @param {Object} object The destination object.
18  * @param {...Object} sources The source objects.
19  * @param {Function} [customizer] The function to customize assigned values.
20  * @returns {Object} Returns `object`.
21  * @example
22  *
23  * function customizer(objValue, srcValue) {
24  *   return _.isUndefined(objValue) ? srcValue : objValue;
25  * }
26  *
27  * var defaults = _.partialRight(_.assignInWith, customizer);
28  *
29  * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
30  * // => { 'a': 1, 'b': 2 }
31  */
32 var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {
33   copyObjectWith(source, keysIn(source), object, customizer);
34 });
35
36 module.exports = assignInWith;