unzipWith
Import from @varavel/vdl-plugin-sdk/utils/arrays.
Unzips an array of arrays, applying an iteratee function to regrouped elements.
Type Parameters
| Type Parameter |
|---|
T |
R |
Parameters
| Parameter | Type | Description |
|---|---|---|
target |
readonly T[][] |
The nested array to unzip. This is an array of arrays, where each inner array contains elements to be unzipped. |
iteratee |
(...args) => R |
A function to transform the unzipped elements. |
Returns
R[]
A new array of unzipped and transformed elements.