(
valueId?: Id,
invalidValue?: any,
defaultedValue?: Value,
)
| 1093 | }; |
| 1094 | |
| 1095 | const valueInvalid = ( |
| 1096 | valueId?: Id, |
| 1097 | invalidValue?: any, |
| 1098 | defaultedValue?: Value, |
| 1099 | ): ValueOrUndefined => { |
| 1100 | arrayPush( |
| 1101 | mapEnsure<Id | undefined, any[]>(invalidValues, valueId, () => []), |
| 1102 | invalidValue, |
| 1103 | ); |
| 1104 | return defaultedValue; |
| 1105 | }; |
| 1106 | |
| 1107 | const getCellChange: GetCellChange = (tableId: Id, rowId: Id, cellId: Id) => |
| 1108 | ifNotUndefined( |
no test coverage detected
searching dependent graphs…