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

Function getNCells

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

Source from the content-addressed store, hash-verified

114};
115
116export const getNCells = (N: number): Row => {
117 const row: Row = {};
118 for (let n = 1; n <= N; n++) {
119 row['cell' + n] = n;
120 }
121 return row;
122};
123
124export const getNValues = (N: number): Values => {
125 const values: Values = {};

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…