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

Function getNRows

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

Source from the content-addressed store, hash-verified

106};
107
108export const getNRows = (N: number): Table => {
109 const table: Table = {};
110 for (let n = 1; n <= N; n++) {
111 table['row' + n] = {cell: n};
112 }
113 return table;
114};
115
116export const getNCells = (N: number): Row => {
117 const row: Row = {};

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…