5be3250f1a873559d8d1a7813d39ed32ebc418468d8841399b0001208127702c.json 764 B

1
  1. {"ast":null,"code":"/**\n * This base implementation of `_.zipObject` which assigns values using `assignFunc`.\n *\n * @private\n * @param {Array} props The property identifiers.\n * @param {Array} values The property values.\n * @param {Function} assignFunc The function to assign values.\n * @returns {Object} Returns the new object.\n */\nfunction baseZipObject(props, values, assignFunc) {\n var index = -1,\n length = props.length,\n valsLength = values.length,\n result = {};\n while (++index < length) {\n var value = index < valsLength ? values[index] : undefined;\n assignFunc(result, props[index], value);\n }\n return result;\n}\nexport default baseZipObject;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}