(valueId)
| 1867 | const getValues = () => mapToObj(valuesMap, decodeIfJson); |
| 1868 | const getValueIds = () => mapKeys(valuesMap); |
| 1869 | const getValue = (valueId) => decodeIfJson(mapGet(valuesMap, id(valueId))); |
| 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)); |
no test coverage detected
searching dependent graphs…