(tableId, rowId, cellId)
| 2357 | const getRow = (tableId, rowId) => mapToObj(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), decodeIfJson); |
| 2358 | const getCellIds = (tableId, rowId) => mapKeys(mapGet(mapGet(tablesMap, id(tableId)), id(rowId))); |
| 2359 | const getCell = (tableId, rowId, cellId) => decodeIfJson( |
| 2360 | mapGet(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), id(cellId)) |
| 2361 | ); |
| 2362 | const getValues = () => mapToObj(valuesMap, decodeIfJson); |
| 2363 | const getValueIds = () => mapKeys(valuesMap); |
| 2364 | const getValue3 = (valueId) => decodeIfJson(mapGet(valuesMap, id(valueId))); |
no test coverage detected
searching dependent graphs…