Function unzip

  • This method is like zip except that it accepts an array of grouped elements and creates an array regrouping the elements to their pre-zip configuration.

    Type Parameters

    • T extends any[]

    Parameters

    • array: T[]

      The array of grouped elements to process.

    Returns T[number][][]

    Returns the new array of regrouped elements.

    1.2.0

    unzipWith, zip, zipObject, zipObjectDeep, zipWith

    const zipped = zip(['a', 'b'], [1, 2], [true, false])
    // => [['a', 1, true], ['b', 2, false]]

    unzip(zipped)
    // => [['a', 'b'], [1, 2], [true, false]]