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

Function setTable

docs/pseudo.esm.sh/tinybase@9.0.0/ui-solid-inspector/index.js:2387–2390  ·  view source on GitHub ↗
(tableId, table)

Source from the content-addressed store, hash-verified

2385 () => validateTables(tables) ? setValidTables(tables) : 0
2386 );
2387 const setTable = (tableId, table) => fluentTransaction(
2388 (tableId2) => validateTable(table, tableId2) ? setValidTable(tableId2, table) : 0,
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,

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…