basant307/AI_Governance_Project
045
1var baseRest = require('./_baseRest'),2 unzip = require('./unzip');3 4/**5 * Creates an array of grouped elements, the first of which contains the6 * first elements of the given arrays, the second of which contains the7 * second elements of the given arrays, and so on.8 *9 * @static10 * @memberOf _11 * @since 0.1.012 * @category Array13 * @param {...Array} [arrays] The arrays to process.14 * @returns {Array} Returns the new array of grouped elements.15 * @example16 *17 * _.zip(['a', 'b'], [1, 2], [true, false]);18 * // => [['a', 1, true], ['b', 2, false]]19 */20var zip = baseRest(unzip);21 22module.exports = zip;23 