(tableId: Id, tableMap: TableMap, rowId: Id)
| 891 | }; |
| 892 | |
| 893 | const delValidRow = (tableId: Id, tableMap: TableMap, rowId: Id): void => { |
| 894 | if (whileMutating(() => middleware[9]?.(tableId, rowId)) ?? true) { |
| 895 | const [, releaseId] = mapGet( |
| 896 | tablePoolFunctions, |
| 897 | tableId, |
| 898 | ) as PoolFunctions; |
| 899 | releaseId(rowId); |
| 900 | setValidRow(tableId, tableMap, rowId, {}, true); |
| 901 | } |
| 902 | }; |
| 903 | |
| 904 | const delValidCell = ( |
| 905 | tableId: Id, |
no test coverage detected
searching dependent graphs…