Skip to content

Commit 9a192c7

Browse files
authored
style: add spaces between parentheses and arguments
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 21775b0 commit 9a192c7

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/utils/unzip/lib

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/utils/unzip/lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,17 @@ function unzip( arr, idx ) {
8585
} else {
8686
idx = [];
8787
for ( i = 0; i < numVals; i++ ) {
88-
idx.push(i);
88+
idx.push( i );
8989
}
9090
}
9191
out = [];
9292
for ( j = 0; j < numVals; j++ ) {
9393
tmp = [];
9494
k = idx[ j ];
9595
for ( i = 0; i < len; i++ ) {
96-
tmp.push(arr[ i ][ k ]);
96+
tmp.push( arr[ i ][ k ] );
9797
}
98-
out.push(tmp);
98+
out.push( tmp );
9999
}
100100
return out;
101101
}

0 commit comments

Comments
 (0)