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 aec3e9e commit 181af3eCopy full SHA for 181af3e
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "excel-ent",
3
- "version": "4.2.1",
+ "version": "4.2.3",
4
"license": "MIT",
5
"publishConfig": {
6
"access": "public"
src/helpers/rows.ts
@@ -41,7 +41,9 @@ const handleMixedStructure = (data: ExcelEntDataStructure) => {
41
42
rows.push(...transposed);
43
44
- currentIndex = nextRowIndex === -1 ? currentIndex : nextRowIndex;
+ if (nextRowIndex === -1) break;
45
+
46
+ currentIndex = nextRowIndex;
47
}
48
49
0 commit comments