(valueId)
| 2257 | const getValues = () => mapToObj(valuesMap, decodeIfJson); |
| 2258 | const getValueIds = () => mapKeys(valuesMap); |
| 2259 | const getValue = (valueId) => decodeIfJson(mapGet(valuesMap, id(valueId))); |
| 2260 | const hasTables = () => !collIsEmpty(tablesMap); |
| 2261 | const hasTable = (tableId) => collHas(tablesMap, id(tableId)); |
| 2262 | const hasTableCell = (tableId, cellId) => collHas(mapGet(tableCellIds, id(tableId)), id(cellId)); |
no test coverage detected
searching dependent graphs…