fix: adjust the col numbers in extracted data #76
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix-complex-xl-upload"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -402,3 +402,1 @@
for (let j = 0; j < keys.length; j++) {
const key = keys[j]
const val = row[key]
for (let j = range.s.c, x = 0; j <= range.e.c; j++, x++) {
Can you leave a comment explaining range.s.c and what does the iteration aims to achieve?