(table)
| 313 | } |
| 314 | |
| 315 | function hasStaticColumn(table) { |
| 316 | return staticColumnCount(table) > 0; |
| 317 | } |
| 318 | |
| 319 | function staticColumnCount(table) { |
| 320 | return table.columns.reduce((acc, column) => acc + (column.isStatic ? 1 : 0), 0); |
no test coverage detected