MCPcopy
hub / github.com/tinyplex/tinybase / getNTables

Function getNTables

test/perf/common.ts:100–106  ·  view source on GitHub ↗
(N: number)

Source from the content-addressed store, hash-verified

98};
99
100export const getNTables = (N: number): Tables => {
101 const tables: Tables = {};
102 for (let n = 1; n <= N; n++) {
103 tables['table' + n] = {row: {cell: n}};
104 }
105 return tables;
106};
107
108export const getNRows = (N: number): Table => {
109 const table: Table = {};

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…