(cellId)
| 278 | const sortKeys = mapGet(allSortKeys, id2); |
| 279 | const processRow = (rowId) => { |
| 280 | const getCell = (cellId) => store.getCell(tableId, rowId, cellId); |
| 281 | const oldRowValue = mapGet(rowValues, rowId); |
| 282 | const newRowValue = hasRow(tableId, rowId) ? validateRowValue(getRowValue(getCell, rowId)) : void 0; |
| 283 | if (!(oldRowValue === newRowValue || isArray(oldRowValue) && isArray(newRowValue) && arrayIsEqual(oldRowValue, newRowValue))) { |
no test coverage detected
searching dependent graphs…