The lodash zip() function normally accepts two or more arrays as arguments. Can it accept an array of arrays?
For example, given an object like var aa = [[1,2,3],[4,5,6]]; and a desired output of [[1,4],[2,5],[3,6]] zip() must be called like _.zip(aa[0],aa[1]). For an array of arrays with more than two elements, typing the indexes into the function call becomes repetitive.
Calling _.zip(aa) doesn't work. It just nests the original array of arrays.