UNPKG
datainout
Version:
latest (1.1.2-beta)
1.1.2-beta
1.1.1-beta
1.1.0-beta
1.0.0
Import and reports data
datainout
/
dist
/
helpers
/
get-section.js
10 lines
(9 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
// src/helpers/get-section.ts
function
getSection
(
rowIndex, beginTableAt, row, columnIndex
) {
if
(rowIndex < beginTableAt)
return
"header"
;
if
(row.
values
[columnIndex])
return
"table"
;
return
"footer"
; }
export
{ getSection };