diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
commit | cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch) | |
tree | 92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/lodash/zipObjectDeep.js | |
parent | 3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff) |
remove node_modules
Diffstat (limited to 'node_modules/lodash/zipObjectDeep.js')
-rw-r--r-- | node_modules/lodash/zipObjectDeep.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/node_modules/lodash/zipObjectDeep.js b/node_modules/lodash/zipObjectDeep.js deleted file mode 100644 index 7c858f844..000000000 --- a/node_modules/lodash/zipObjectDeep.js +++ /dev/null @@ -1,23 +0,0 @@ -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; |