MCPcopy Create free account
hub / github.com/tinyplex/tinybase / setTable

Function setTable

docs/pseudo.esm.sh/tinybase@9.0.0/index.js:1892–1895  ·  view source on GitHub ↗
(tableId, table)

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 3

fluentTransactionFunction · 0.70
validateTableFunction · 0.70
setValidTableFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…