(cell)
| 34 | } |
| 35 | |
| 36 | function getEffectiveCellType(cell) { |
| 37 | switch (cell.type) { |
| 38 | case Enums.ValueType.Formula: |
| 39 | return getValueType(cell.result); |
| 40 | default: |
| 41 | return cell.type; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | class CellXform extends BaseXform { |
| 46 | constructor() { |
no test coverage detected
searching dependent graphs…