MCPcopy Index your code
hub / github.com/tinyplex/tinybase / delRow

Function delRow

src/store/index.ts:1825–1833  ·  view source on GitHub ↗
(tableId: Id, rowId: Id)

Source from the content-addressed store, hash-verified

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,

Callers 1

applyChangesFunction · 0.70

Calls 4

mapGetFunction · 0.90
collHasFunction · 0.90
fluentTransactionFunction · 0.70
delValidRowFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…