(rowKeys: readonly string[], index: number)
| 481 | * @returns Row key or undefined if out of bounds |
| 482 | */ |
| 483 | export 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 | } |
no outgoing calls
no test coverage detected