(from = 0, to = 100000)
| 4 | }; |
| 5 | |
| 6 | export 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 | } |
no outgoing calls
no test coverage detected