(valueId, invalidValue, defaultedValue)
| 1555 | return defaultedCell; |
| 1556 | }; |
| 1557 | const valueInvalid = (valueId, invalidValue, defaultedValue) => { |
| 1558 | arrayPush( |
| 1559 | mapEnsure(invalidValues, valueId, () => []), |
| 1560 | invalidValue |
| 1561 | ); |
| 1562 | return defaultedValue; |
| 1563 | }; |
| 1564 | const getCellChange = (tableId, rowId, cellId) => ifNotUndefined( |
| 1565 | mapGet(mapGet(mapGet(changedCells, tableId), rowId), cellId), |
| 1566 | ([oldCell, newCell]) => [ |
no test coverage detected
searching dependent graphs…