(tableId, rowId, row)
| 2389 | tableId |
| 2390 | ); |
| 2391 | const setRow = (tableId, rowId, row) => fluentTransaction( |
| 2392 | (tableId2, rowId2) => validateRow(tableId2, rowId2, row) ? setValidRow(tableId2, getOrCreateTable(tableId2), rowId2, row) : 0, |
| 2393 | tableId, |
| 2394 | rowId |
| 2395 | ); |
| 2396 | const addRow = (tableId, row, reuseRowIds = true) => transaction(() => { |
| 2397 | let rowId = void 0; |
| 2398 | if (validateRow(tableId, rowId, row)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…