(tableId, table)
| 1890 | () => validateTables(tables) ? setValidTables(tables) : 0 |
| 1891 | ); |
| 1892 | const setTable = (tableId, table) => fluentTransaction( |
| 1893 | (tableId2) => validateTable(table, tableId2) ? setValidTable(tableId2, table) : 0, |
| 1894 | tableId |
| 1895 | ); |
| 1896 | const setRow = (tableId, rowId, row) => fluentTransaction( |
| 1897 | (tableId2, rowId2) => validateRow(tableId2, rowId2, row) ? setValidRow(tableId2, getOrCreateTable(tableId2), rowId2, row) : 0, |
| 1898 | tableId, |
nothing calls this directly
no test coverage detected
searching dependent graphs…