(tableId)
| 1429 | return rowId; |
| 1430 | }; |
| 1431 | const getOrCreateTable = (tableId) => mapEnsure(tablesMap, tableId, () => { |
| 1432 | tableIdsChanged(tableId, 1); |
| 1433 | mapSet(tablePoolFunctions, tableId, getPoolFunctions()); |
| 1434 | mapSet(tableCellIds, tableId, mapNew()); |
| 1435 | return mapNew(); |
| 1436 | }); |
| 1437 | const delValidTable = (tableId) => { |
| 1438 | if (whileMutating(() => middleware[8]?.(tableId)) ?? true) { |
| 1439 | return setValidTable(tableId, {}, true); |
no test coverage detected
searching dependent graphs…