(tableId)
| 1435 | return mapNew(); |
| 1436 | }); |
| 1437 | const delValidTable = (tableId) => { |
| 1438 | if (whileMutating(() => middleware[8]?.(tableId)) ?? true) { |
| 1439 | return setValidTable(tableId, {}, true); |
| 1440 | } |
| 1441 | return mapGet(tablesMap, tableId); |
| 1442 | }; |
| 1443 | const delValidRow = (tableId, tableMap, rowId) => { |
| 1444 | if (whileMutating(() => middleware[9]?.(tableId, rowId)) ?? true) { |
| 1445 | const [, releaseId] = mapGet(tablePoolFunctions, tableId); |
no test coverage detected
searching dependent graphs…