(tableId, rowId)
| 1860 | ([, rowId]) => rowId |
| 1861 | ); |
| 1862 | const getRow = (tableId, rowId) => mapToObj(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), decodeIfJson); |
| 1863 | const getCellIds = (tableId, rowId) => mapKeys(mapGet(mapGet(tablesMap, id(tableId)), id(rowId))); |
| 1864 | const getCell = (tableId, rowId, cellId) => decodeIfJson( |
| 1865 | mapGet(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), id(cellId)) |