(cellId: Id)
| 123 | |
| 124 | const processRow = (rowId: Id) => { |
| 125 | const getCell = (cellId: Id): Cell | undefined => |
| 126 | store.getCell(tableId, rowId, cellId); |
| 127 | const oldRowValue = mapGet(rowValues, rowId); |
| 128 | const newRowValue = hasRow(tableId, rowId) |
| 129 | ? validateRowValue(getRowValue(getCell as any, rowId)) |
no test coverage detected
searching dependent graphs…