(tableId, rowId, cellId)
| 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); |
| 1876 | const hasValue = (valueId) => collHas(valuesMap, id(valueId)); |
| 1877 | const getTablesJson = () => jsonStringWithMap(tablesMap); |
no test coverage detected
searching dependent graphs…