(tableId: Id)
| 1539 | const hasTables = (): boolean => !collIsEmpty(tablesMap); |
| 1540 | |
| 1541 | const hasTable = (tableId: Id): boolean => collHas(tablesMap, id(tableId)); |
| 1542 | |
| 1543 | const hasTableCell = (tableId: Id, cellId: Id): boolean => |
| 1544 | collHas(mapGet(tableCellIds, id(tableId)), id(cellId)); |
no test coverage detected
searching dependent graphs…