MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / getRowKeyAtIndex

Function getRowKeyAtIndex

packages/core/src/widgets/table.ts:483–488  ·  view source on GitHub ↗
(rowKeys: readonly string[], index: number)

Source from the content-addressed store, hash-verified

481 * @returns Row key or undefined if out of bounds
482 */
483export function getRowKeyAtIndex(rowKeys: readonly string[], index: number): string | undefined {
484 if (index < 0 || index >= rowKeys.length) {
485 return undefined;
486 }
487 return rowKeys[index];
488}

Callers 3

table.edge.test.tsFile · 0.85
routeTableKeyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected