mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-09 05:26:33 +00:00
committed by
GitHub
parent
20d2b4f98d
commit
e4f3964f67
2
node_modules/underscore/modules/unzip.js
generated
vendored
2
node_modules/underscore/modules/unzip.js
generated
vendored
@ -5,7 +5,7 @@ import pluck from './pluck.js';
|
||||
// Complement of zip. Unzip accepts an array of arrays and groups
|
||||
// each array's elements on shared indices.
|
||||
export default function unzip(array) {
|
||||
var length = array && max(array, getLength).length || 0;
|
||||
var length = (array && max(array, getLength).length) || 0;
|
||||
var result = Array(length);
|
||||
|
||||
for (var index = 0; index < length; index++) {
|
||||
|
Reference in New Issue
Block a user