MCPcopy Create free account
hub / github.com/cosdensolutions/code / createUsers

Function createUsers

videos/long/rendering-100k-rows-in-react/src/user.ts:6–11  ·  view source on GitHub ↗
(from = 0, to = 100000)

Source from the content-addressed store, hash-verified

4};
5
6export function createUsers(from = 0, to = 100000): User[] {
7 return Array.from({ length: to - from }, (_, i) => ({
8 id: i + from,
9 name: `User ${i + from}`,
10 }));
11}

Callers 2

AppFunction · 0.90
fetchNextPageFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected