UNPKG

datainout

Version:

Import and reports data

10 lines (9 loc) 235 B
// 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 };