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/amd/unzip.js
generated
vendored
2
node_modules/underscore/amd/unzip.js
generated
vendored
@ -3,7 +3,7 @@ define(['./max', './_getLength', './pluck'], function (max, _getLength, pluck) {
|
||||
// Complement of zip. Unzip accepts an array of arrays and groups
|
||||
// each array's elements on shared indices.
|
||||
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