mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -8,16 +8,16 @@
|
||||
* @returns {Object} Returns the new object.
|
||||
*/
|
||||
function baseZipObject(props, values, assignFunc) {
|
||||
let index = -1;
|
||||
const length = props.length;
|
||||
const valsLength = values.length;
|
||||
const result = {};
|
||||
let index = -1
|
||||
const length = props.length
|
||||
const valsLength = values.length
|
||||
const result = {}
|
||||
|
||||
while (++index < length) {
|
||||
const value = index < valsLength ? values[index] : undefined;
|
||||
assignFunc(result, props[index], value);
|
||||
const value = index < valsLength ? values[index] : undefined
|
||||
assignFunc(result, props[index], value)
|
||||
}
|
||||
return result;
|
||||
return result
|
||||
}
|
||||
|
||||
export default baseZipObject;
|
||||
export default baseZipObject
|
||||
|
||||
Reference in New Issue
Block a user