(tableId: Id, rowId: Id)
| 1823 | ); |
| 1824 | |
| 1825 | const delRow = (tableId: Id, rowId: Id): Store => |
| 1826 | fluentTransaction( |
| 1827 | (tableId, rowId) => |
| 1828 | ifNotUndefined(mapGet(tablesMap, tableId), (tableMap) => |
| 1829 | collHas(tableMap, rowId) ? delValidRow(tableId, tableMap, rowId) : 0, |
| 1830 | ), |
| 1831 | tableId, |
| 1832 | rowId, |
| 1833 | ); |
| 1834 | |
| 1835 | const delCell = ( |
| 1836 | tableId: Id, |
no test coverage detected
searching dependent graphs…