Urara-Blog/node_modules/.pnpm-store/v3/files/4c/05fa5b5172f599e7b450ad43131ebb2904c1fbd3e256443926f797703dcdea0f452d15c6e566ca735430fb255c785f54db30cec435c47302671cb60711d555
2022-08-14 01:14:53 +08:00

23 lines
643 B
Text

var baseSet = require('./_baseSet'),
baseZipObject = require('./_baseZipObject');
/**
* This method is like `_.zipObject` except that it supports property paths.
*
* @static
* @memberOf _
* @since 4.1.0
* @category Array
* @param {Array} [props=[]] The property identifiers.
* @param {Array} [values=[]] The property values.
* @returns {Object} Returns the new object.
* @example
*
* _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]);
* // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } }
*/
function zipObjectDeep(props, values) {
return baseZipObject(props || [], values || [], baseSet);
}
module.exports = zipObjectDeep;