Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit 5149aee

Browse files
committed
Fixed null values
1 parent 40cbb9e commit 5149aee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ImportJSON.gs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ function parseHeaders_(headers, data) {
423423
*/
424424
function transformData_(data, options, transformFunc) {
425425
for (var i = 0; i < data.length; i++) {
426-
for (var j = 0; j < data[i].length; j++) {
426+
for (var j = 0; j < data[0].length; j++) {
427427
transformFunc(data, i, j, options);
428428
}
429429
}

0 commit comments

Comments
 (0)