(tableId: Id, cellId: Id)
| 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)); |
| 1545 | |
| 1546 | const hasRow = (tableId: Id, rowId: Id): boolean => |
| 1547 | collHas(mapGet(tablesMap, id(tableId)), id(rowId)); |
no test coverage detected
searching dependent graphs…