@newdash/newdash
Version:
javascript/typescript utility library
19 lines (18 loc) • 555 B
TypeScript
/**
* This method is like `zipObject` except that it supports property paths.
*
* @since 4.1.0
* @category Array
* @param {Array} [props=[]] The property identifiers.
* @param {Array} [values=[]] The property values.
* @returns {Object} Returns the new object.
* @see unzip, unzipWith, zip, zipObject, zipWith
* @example
*
* ```js
* zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2])
* // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } }
* ```
*/
export declare function zipObjectDeep(props: any, values: any): any;
export default zipObjectDeep;