(v: ExcelCellValue)
| 205 | if (!Array.isArray(matrix) || matrix.length === 0) return [] |
| 206 | |
| 207 | const isEmptyValue = (v: ExcelCellValue) => v === null || v === '' |
| 208 | |
| 209 | // Determine last non-empty row |
| 210 | let lastNonEmptyRowIndex = -1 |
no outgoing calls
no test coverage detected