mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
Remove semicolons.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import baseSet from './.internal/baseSet.js';
|
||||
import baseZipObject from './.internal/baseZipObject.js';
|
||||
import baseSet from './.internal/baseSet.js'
|
||||
import baseZipObject from './.internal/baseZipObject.js'
|
||||
|
||||
/**
|
||||
* This method is like `zipObject` except that it supports property paths.
|
||||
@@ -12,11 +12,11 @@ import baseZipObject from './.internal/baseZipObject.js';
|
||||
* @see unzip, unzipWith, zip, zipObject, zipWith
|
||||
* @example
|
||||
*
|
||||
* zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]);
|
||||
* 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);
|
||||
return baseZipObject(props || [], values || [], baseSet)
|
||||
}
|
||||
|
||||
export default zipObjectDeep;
|
||||
export default zipObjectDeep
|
||||
|
||||
Reference in New Issue
Block a user