We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21775b0 commit 9a192c7Copy full SHA for 9a192c7
lib/node_modules/@stdlib/utils/unzip/lib/main.js
@@ -85,17 +85,17 @@ function unzip( arr, idx ) {
85
} else {
86
idx = [];
87
for ( i = 0; i < numVals; i++ ) {
88
- idx.push(i);
+ idx.push( i );
89
}
90
91
out = [];
92
for ( j = 0; j < numVals; j++ ) {
93
tmp = [];
94
k = idx[ j ];
95
for ( i = 0; i < len; i++ ) {
96
- tmp.push(arr[ i ][ k ]);
+ tmp.push( arr[ i ][ k ] );
97
98
- out.push(tmp);
+ out.push( tmp );
99
100
return out;
101
0 commit comments