(tableId, cellId)
| 1870 | const hasTables = () => !collIsEmpty(tablesMap); |
| 1871 | const hasTable = (tableId) => collHas(tablesMap, id(tableId)); |
| 1872 | const hasTableCell = (tableId, cellId) => collHas(mapGet(tableCellIds, id(tableId)), id(cellId)); |
| 1873 | const hasRow = (tableId, rowId) => collHas(mapGet(tablesMap, id(tableId)), id(rowId)); |
| 1874 | const hasCell = (tableId, rowId, cellId) => collHas(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), id(cellId)); |
| 1875 | const hasValues = () => !collIsEmpty(valuesMap); |
no test coverage detected
searching dependent graphs…